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

This commit is contained in:
neil@parkwaycc.co.uk
2005-07-09 00:14:48 +00:00
parent 574eed8584
commit cc1e49fa81
3 changed files with 19 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
//*****************************************************************************