fix build bustage - use correct return type

git-svn-id: svn://10.0.0.236/trunk@49560 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
pavlov%netscape.com 1999-10-01 09:23:50 +00:00
parent cfe1981f1b
commit 58efa4f2ba
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();