oops. implementing function shell to make it compile

git-svn-id: svn://10.0.0.236/trunk@24977 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
danm%netscape.com
1999-03-24 06:18:59 +00:00
parent 888b433ccb
commit 685b734921
2 changed files with 10 additions and 1 deletions

View File

@@ -156,7 +156,7 @@ NS_METHOD nsAppShell::Spindown()
//-------------------------------------------------------------------------
//
// GetNativeData
// Run
//
//-------------------------------------------------------------------------
NS_METHOD nsAppShell::Run()
@@ -251,6 +251,13 @@ NS_METHOD nsAppShell::DispatchNativeEvent(PRBool aRealEvent, void *aEvent)
return NS_ERROR_FAILURE;
}
NS_METHOD nsAppShell::EventIsForModalWindow(PRBool aRealEvent, void *aEvent,
nsIWidget *aWidget, PRBool *aForWindow)
{
*aForWindow = PR_TRUE;
return NS_OK;
}
NS_METHOD
nsAppShell::GetSelectionMgr(nsISelectionMgr** aSelectionMgr)
{

View File

@@ -44,6 +44,8 @@ class nsAppShell : public nsIAppShell
NS_IMETHOD Spindown();
NS_IMETHOD GetNativeEvent(PRBool &aRealEvent, void *&aEvent);
NS_IMETHOD DispatchNativeEvent(PRBool aRealEvent, void * aEvent);
NS_IMETHOD EventIsForModalWindow(PRBool aRealEvent, void *aEvent,
nsIWidget *aWidget, PRBool *aForWindow);
NS_IMETHOD Exit();
NS_IMETHOD SetDispatchListener(nsDispatchListener* aDispatchListener);
virtual void* GetNativeData(PRUint32 aDataType);