From 93cec57e4aebb0524d6b6ad954b3016eecd459eb Mon Sep 17 00:00:00 2001 From: "briano%netscape.com" Date: Fri, 17 Sep 1999 03:25:58 +0000 Subject: [PATCH] Fixed the Unix native compiler breakage. Replaced the invalid 'true' with 'PR_TRUE'. --- xpfe/appshell/src/nsAppShellService.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpfe/appshell/src/nsAppShellService.cpp b/xpfe/appshell/src/nsAppShellService.cpp index 24a1b6c1d356..dc6c21de837f 100644 --- a/xpfe/appshell/src/nsAppShellService.cpp +++ b/xpfe/appshell/src/nsAppShellService.cpp @@ -461,7 +461,7 @@ NS_IMETHODIMP nsAppShellService::Quit() if ( mQuiting ) return NS_OK; nsresult rv; - mQuiting = true; + mQuiting = PR_TRUE; // now step through all opened registered windows and close them. NS_WITH_SERVICE(nsIWindowMediator, windowMediator, kWindowMediatorCID, &rv); if (NS_SUCCEEDED(rv)) {