fix build bustage - use correct return type

This commit is contained in:
pavlov%netscape.com 1999-10-01 09:23:50 +00:00
Родитель 8b2016044d
Коммит 4cbc9784d7
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -63,7 +63,7 @@ NS_METHOD nsAppShell::SetDispatchListener(nsDispatchListener* aDispatchListener)
//
//-------------------------------------------------------------------------
nsresult nsAppShell::Run()
NS_METHOD nsAppShell::Run()
{
NS_ADDREF_THIS();
// Process messages

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

@ -38,7 +38,7 @@ class nsAppShell : public nsIAppShell
// nsIAppShellInterface
NS_IMETHOD Create(int* argc, char ** argv);
virtual nsresult Run();
NS_IMETHOD Run();
NS_IMETHOD Spinup() { return NS_OK; }
NS_IMETHOD Spindown() { return NS_OK; }
NS_IMETHOD PushThreadEventQueue();