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

This commit is contained in:
tbogard@aol.net
1999-12-02 09:43:07 +00:00
parent 26195cce49
commit 9e6a67753d
2 changed files with 14 additions and 0 deletions
+7
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();