fix build bustage - use correct return type

This commit is contained in:
pavlov%netscape.com 1999-10-01 09:23:50 +00:00
parent 2cede8bc92
commit 4e0b7b3813
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -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();