implement new attribute nsIBaseWindow::enabled. bug 126786 r=hyatt,rginda a=asa

git-svn-id: svn://10.0.0.236/trunk@115519 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
danm%netscape.com
2002-02-28 23:22:55 +00:00
parent 0b57d4aa2f
commit a4ebf6625d
6 changed files with 76 additions and 0 deletions

View File

@@ -2777,6 +2777,20 @@ nsDocShell::SetVisibility(PRBool aVisibility)
return NS_OK;
}
NS_IMETHODIMP
nsDocShell::GetEnabled(PRBool *aEnabled)
{
NS_ENSURE_ARG_POINTER(aEnabled);
*aEnabled = PR_TRUE;
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
nsDocShell::SetEnabled(PRBool aEnabled)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
nsDocShell::GetMainWidget(nsIWidget ** aMainWidget)
{