From cc3f3871a3cecae63632ef68fc2209f3ec74edbb Mon Sep 17 00:00:00 2001 From: "rpotts%netscape.com" Date: Fri, 31 Aug 2001 00:49:30 +0000 Subject: [PATCH] fix build bustage from bug #97227 git-svn-id: svn://10.0.0.236/trunk@102051 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/extensions/inspector/base/src/inLayoutUtils.cpp | 2 +- mozilla/extensions/xmlterm/base/mozXMLTermSession.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/extensions/inspector/base/src/inLayoutUtils.cpp b/mozilla/extensions/inspector/base/src/inLayoutUtils.cpp index 2c3a3d002c7..805c77f0b72 100644 --- a/mozilla/extensions/inspector/base/src/inLayoutUtils.cpp +++ b/mozilla/extensions/inspector/base/src/inLayoutUtils.cpp @@ -220,7 +220,7 @@ inLayoutUtils::GetScreenOrigin(nsIDOMElement* aElement) if (presShell) { // Flush all pending notifications so that our frames are uptodate - presShell->FlushPendingNotifications(); + presShell->FlushPendingNotifications(PR_FALSE); nsCOMPtr presContext; presShell->GetPresContext(getter_AddRefs(presContext)); diff --git a/mozilla/extensions/xmlterm/base/mozXMLTermSession.cpp b/mozilla/extensions/xmlterm/base/mozXMLTermSession.cpp index e4ca76aa134..75c571d0dd8 100644 --- a/mozilla/extensions/xmlterm/base/mozXMLTermSession.cpp +++ b/mozilla/extensions/xmlterm/base/mozXMLTermSession.cpp @@ -2915,7 +2915,7 @@ NS_IMETHODIMP mozXMLTermSession::ScrollToBottomLeft(void) if (NS_FAILED(result) || !presShell) return NS_ERROR_FAILURE; - presShell->FlushPendingNotifications(); + presShell->FlushPendingNotifications(PR_FALSE); // Get DOM Window nsCOMPtr docShell;