From 38f3fe04324f68af67478f2f582129513c6c567e Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Sun, 19 Aug 2012 17:49:02 +0900 Subject: sal_Bool to bool Change-Id: I6206ee7e17e12388ea644123e180842df3e3a7ee --- basic/source/comp/loops.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'basic/source/comp/loops.cxx') diff --git a/basic/source/comp/loops.cxx b/basic/source/comp/loops.cxx index 23fa27820c5b..b2e7eb7736c4 100644 --- a/basic/source/comp/loops.cxx +++ b/basic/source/comp/loops.cxx @@ -103,7 +103,7 @@ void SbiParser::If() else { // single line IF - bSingleLineIf = sal_True; + bSingleLineIf = true; nEndLbl = aGen.Gen( _JUMPF, 0 ); Push( eCurTok ); while( !bAbort ) @@ -127,7 +127,7 @@ void SbiParser::If() break; } } - bSingleLineIf = sal_False; + bSingleLineIf = false; } aGen.BackChain( nEndLbl ); } -- cgit v1.2.3