From 557ca2808d39bc6c80606bd3a8c1943398a417df Mon Sep 17 00:00:00 2001 From: "tbogard%aol.net" Date: Thu, 2 Dec 1999 09:43:07 +0000 Subject: [PATCH] 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 --- mozilla/docshell/base/nsWebShell.cpp | 7 +++++++ mozilla/webshell/src/nsWebShell.cpp | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/mozilla/docshell/base/nsWebShell.cpp b/mozilla/docshell/base/nsWebShell.cpp index 6308aced31b..853c7e572d9 100644 --- a/mozilla/docshell/base/nsWebShell.cpp +++ b/mozilla/docshell/base/nsWebShell.cpp @@ -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(); diff --git a/mozilla/webshell/src/nsWebShell.cpp b/mozilla/webshell/src/nsWebShell.cpp index 6308aced31b..853c7e572d9 100644 --- a/mozilla/webshell/src/nsWebShell.cpp +++ b/mozilla/webshell/src/nsWebShell.cpp @@ -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();