adding a parameter to nsIBrowserWindow::SizeWindowTo. part of bug 15555. r:hyatt

git-svn-id: svn://10.0.0.236/trunk@57892 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
danm%netscape.com
2000-01-15 02:30:34 +00:00
parent 99dee8a876
commit 2b63300d33
13 changed files with 31 additions and 16 deletions

View File

@@ -1117,7 +1117,8 @@ nsWebShell::SizeToContent()
heightDelta = height - oldHeight;
browser->GetWindowBounds(windowBounds);
browser->SizeWindowTo(windowBounds.width + widthDelta,
windowBounds.height + heightDelta);
windowBounds.height + heightDelta,
PR_FALSE, PR_FALSE);
}
}
}