Stubbed out the implementation of FocusAvailable in webshell as part of the nsIBaseWindow interface.

git-svn-id: svn://10.0.0.236/trunk@55061 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
tbogard%aol.net
1999-12-02 09:43:07 +00:00
parent 116c31c15c
commit 557ca2808d
2 changed files with 14 additions and 0 deletions

View File

@@ -4071,6 +4071,13 @@ NS_IMETHODIMP nsWebShell::SetFocus()
return NS_OK;
}
NS_IMETHODIMP
nsWebShell::FocusAvailable(nsIBaseWindow* aCurrentFocus, PRBool* aTookFocus)
{
NS_ENSURE_ARG_POINTER(aTookFocus);
return NS_OK;
}
NS_IMETHODIMP nsWebShell::GetTitle(PRUnichar** aTitle)
{
*aTitle = mTitle.ToNewUnicode();