From 6ec4ca77dd569b2efbb269ac124e9a3a9e769369 Mon Sep 17 00:00:00 2001 From: "briano%netscape.com" Date: Tue, 27 Apr 1999 01:27:03 +0000 Subject: [PATCH] Many Unix variants do not define 'false', so use PR_FALSE to fix them. --- xpfe/components/find/src/nsFindComponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpfe/components/find/src/nsFindComponent.cpp b/xpfe/components/find/src/nsFindComponent.cpp index 5113aa7c701e..83d6968171f4 100644 --- a/xpfe/components/find/src/nsFindComponent.cpp +++ b/xpfe/components/find/src/nsFindComponent.cpp @@ -310,7 +310,7 @@ static PRInt32 FindInString(const nsString &searchStr, const nsString &patternSt while (t < searchEnd - 1 && nsString::IsSpace(*(t + 1))) t ++; - inWhitespace = false; + inWhitespace = PR_FALSE; } else inWhitespace = nsString::IsSpace(*p);