This commit is contained in:
radha%netscape.com 1999-01-23 00:52:52 +00:00
Родитель 9b7cdedbb4
Коммит 7237c0f644
1 изменённых файлов: 9 добавлений и 3 удалений

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

@ -199,11 +199,17 @@ nsViewerApp::Initialize(int argc, char** argv)
rv = nsServiceManager::GetService(kEventQueueServiceCID,
kIEventQueueServiceIID,
(nsISupports **)&mEventQService);
if (NS_OK == rv) {
// XXX: What if this fails?
rv = mEventQService->CreateThreadEventQueue();
if (NS_OK != rv) {
NS_ASSERTION("Could not obtain the event queue service", PR_FALSE);
return rv;
}
printf("Going to create the event queue\n");
rv = mEventQService->CreateThreadEventQueue();
if (NS_OK != rv) {
NS_ASSERTION("Could not create the event queue for the the thread", PR_FALSE);
return rv;
}
// Create widget application shell
rv = nsRepository::CreateInstance(kAppShellCID, nsnull, kIAppShellIID,