From d2e663d6203035d298397d4bc877ccc496aebfdc Mon Sep 17 00:00:00 2001 From: "bzbarsky%mit.edu" Date: Wed, 16 Oct 2002 02:50:06 +0000 Subject: [PATCH] fixing build bustage... git-svn-id: svn://10.0.0.236/trunk@132056 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/content/html/document/src/nsHTMLContentSink.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/content/html/document/src/nsHTMLContentSink.cpp b/mozilla/content/html/document/src/nsHTMLContentSink.cpp index e1122a767d6..d6579017be6 100644 --- a/mozilla/content/html/document/src/nsHTMLContentSink.cpp +++ b/mozilla/content/html/document/src/nsHTMLContentSink.cpp @@ -4129,7 +4129,7 @@ HTMLContentSink::DidProcessAToken(void) // Set the performance hint to prevent event starvation when // dispatching PLEvents. This improves application responsiveness // during page loads. - PL_FavorPerformanceHint(FALSE, 0); + PL_FavorPerformanceHint(PR_FALSE, 0); } } else { @@ -4139,7 +4139,7 @@ HTMLContentSink::DidProcessAToken(void) // to favor overall page load speed over responsiveness. mFlags &= ~NS_SINK_FLAG_DYNAMIC_LOWER_VALUE; // Reset the hint that to favoring performance for PLEvent dispatch. - PL_FavorPerformanceHint(TRUE, 0); + PL_FavorPerformanceHint(PR_TRUE, 0); } }