зеркало из https://github.com/mozilla/gecko-dev.git
Few debug statements added
This commit is contained in:
Родитель
9b7cdedbb4
Коммит
7237c0f644
|
@ -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,
|
||||
|
|
Загрузка…
Ссылка в новой задаче