appshell is a service. patch by darin.

This commit is contained in:
dougt%meer.net 2006-06-09 14:35:40 +00:00
Родитель 44aee4259f
Коммит b9be9f5a0e
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -751,7 +751,7 @@ int main(int argc, char *argv[])
OverrideComponents();
NS_TIMELINE_ENTER("appStartup");
nsCOMPtr<nsIAppShell> appShell = do_CreateInstance(kAppShellCID);
nsCOMPtr<nsIAppShell> appShell = do_GetService(kAppShellCID);
if (!appShell)
{
// if we can't get the nsIAppShell, then we should auto reg.
@ -762,7 +762,7 @@ int main(int argc, char *argv[])
registrar->AutoRegister(nsnull);
appShell = do_CreateInstance(kAppShellCID);
appShell = do_GetService(kAppShellCID);
if (!appShell)
return 1;