Added GetNativeEvent and DispatchNativeEvent, these are neded for future modal dialog support

git-svn-id: svn://10.0.0.236/trunk@20252 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rods%netscape.com
1999-02-10 16:20:29 +00:00
parent 5e50cc117b
commit 3ff0cf564d
7 changed files with 131 additions and 4 deletions

View File

@@ -158,3 +158,16 @@ void* nsAppShell::GetNativeData(PRUint32 aDataType)
}
// XXX temporary code for Dialog investigation
nsresult nsAppShell::GetNativeEvent(void *& aEvent, nsIWidget* aWidget, PRBool &aIsInWindow, PRBool &aIsMouseEvent)
{
aIsInWindow = PR_FALSE;
aIsMouseEvent = PR_FALSE;
return NS_ERROR_FAILURE;
}
nsresult nsAppShell::DispatchNativeEvent(void * aEvent)
{
return NS_ERROR_FAILURE;
}