This commit is contained in:
sspitzer%netscape.com 1999-05-04 02:55:16 +00:00
Родитель 6dbfdebe65
Коммит 10dc94a5a3
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -447,6 +447,9 @@ int main()
// has the ability to take nsnull as a parameter. Once that happens, // has the ability to take nsnull as a parameter. Once that happens,
// prefs will do the work of figuring out which prefs file to load... // prefs will do the work of figuring out which prefs file to load...
NS_WITH_SERVICE(nsIPref, prefs, kPrefCID, &result); NS_WITH_SERVICE(nsIPref, prefs, kPrefCID, &result);
if (NS_FAILED(result) || (prefs == nsnull)) {
exit(result);
}
// Create the Event Queue for this thread... // Create the Event Queue for this thread...
nsIEventQueueService* pEventQService; nsIEventQueueService* pEventQService;