338728 Don't dispatch native events after [NSApplication terminate:] is called. r=josh sr=darin

This commit is contained in:
mark%moxienet.com 2006-06-15 17:24:25 +00:00
Родитель ffba1158c6
Коммит 999bec21d3
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -62,6 +62,7 @@ public:
// public only to be visible to Objective-C code that must call it
void ProcessGeckoEvents();
void WillTerminate();
protected:
virtual ~nsAppShell();
@ -76,7 +77,8 @@ protected:
NSPort* mPort;
AppShellDelegate* mDelegate;
PRBool mRunningEventLoop;
PRPackedBool mRunningEventLoop;
PRPackedBool mTerminated;
};
#endif // nsAppShell_h__