Trying to fix bustage.

This commit is contained in:
hyatt%netscape.com 1999-07-06 18:52:38 +00:00
parent 4369cccbf6
commit ed6cec2dac
3 changed files with 9 additions and 0 deletions

View File

@ -73,6 +73,8 @@ public:
NS_IMETHOD GetContentBounds(nsRect& aResult) = 0;
NS_IMETHOD GetWindowBounds(nsRect& aResult) = 0;
NS_IMETHOD IsIntrinsicallySized(PRBool& aResult) = 0;
NS_IMETHOD Show() = 0;
NS_IMETHOD Hide() = 0;

View File

@ -1634,6 +1634,12 @@ nsBrowserWindow::GetContentWebShell(nsIWebShell **aResult)
}
//----------------------------------------
NS_IMETHODIMP
nsBrowserWindow::IsIntrinsicallySized(PRBool& aResult)
{
aResult = PR_FALSE;
return NS_OK;
}
NS_IMETHODIMP
nsBrowserWindow::SetTitle(const PRUnichar* aTitle)

View File

@ -91,6 +91,7 @@ public:
NS_IMETHOD SizeWindowTo(PRInt32 aWidth, PRInt32 aHeight);
NS_IMETHOD GetContentBounds(nsRect& aBounds);
NS_IMETHOD GetWindowBounds(nsRect& aBounds);
NS_IMETHOD IsIntrinsicallySized(PRBool& aResult);
NS_IMETHOD Show();
NS_IMETHOD Hide();
NS_IMETHOD Close();