Disable error pages in composer (webpage editor) b=300022 r=biesi sr=darin a=asa

git-svn-id: svn://10.0.0.236/trunk@175861 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
neil%parkwaycc.co.uk
2005-07-09 00:14:48 +00:00
parent 03436e2c19
commit 21ff78c8b1
4 changed files with 20 additions and 1 deletions

View File

@@ -1697,6 +1697,20 @@ nsDocShell::SetSecurityUI(nsISecureBrowserUI *aSecurityUI)
return NS_OK;
}
NS_IMETHODIMP
nsDocShell::GetUseErrorPages(PRBool *aUseErrorPages)
{
*aUseErrorPages = mUseErrorPages;
return NS_OK;
}
NS_IMETHODIMP
nsDocShell::SetUseErrorPages(PRBool aUseErrorPages)
{
mUseErrorPages = aUseErrorPages;
return NS_OK;
}
//*****************************************************************************
// nsDocShell::nsIDocShellTreeItem
//*****************************************************************************