fixed uninitialized variable in ProxyEvent::Fire()

This commit is contained in:
pierre%netscape.com 1999-03-12 23:27:46 +00:00
Родитель c882274f7f
Коммит fce0679c0e
1 изменённых файлов: 1 добавлений и 14 удалений

Просмотреть файл

@ -409,27 +409,14 @@ void PR_CALLBACK ProxyEvent::DestroyPLEvent(PLEvent* aEvent)
delete ev;
}
/*
#if defined(XP_UNIX)
extern PLEventQueue* gWebShell_UnixEventQueue;
#endif
*/
void ProxyEvent::Fire(PLEventQueue* aEventQ)
{
PLEventQueue* eventQueue;
InitEvent();
#if defined(XP_PC) || defined (XP_UNIX)
NS_PRECONDITION(nsnull != aEventQ, "PLEventQueue for thread is null");
eventQueue = aEventQ;
/*
#elif defined(XP_UNIX)
eventQueue = gWebShell_UnixEventQueue;
*/
#endif
PL_PostEvent(eventQueue, this);
PL_PostEvent(aEventQ, this);
}