From 621145a777ec6ac918bd822bfc4ece1f75900bb1 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Fri, 3 Aug 2012 10:28:32 +0900 Subject: sal_Bool -> bool Change-Id: I49749f327d6a9c3661ef9bd684647e0a45b9203a --- basic/source/comp/codegen.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'basic/source/comp/codegen.cxx') diff --git a/basic/source/comp/codegen.cxx b/basic/source/comp/codegen.cxx index 354ffb51b722..6642cb13f6f1 100644 --- a/basic/source/comp/codegen.cxx +++ b/basic/source/comp/codegen.cxx @@ -31,7 +31,7 @@ SbiCodeGen::SbiCodeGen( SbModule& r, SbiParser* p, short nInc ) : rMod( r ), aCode( p, nInc ) { pParser = p; - bStmnt = sal_False; + bStmnt = false; nLine = 0; nCol = 0; nForLevel = 0; @@ -46,7 +46,7 @@ sal_uInt32 SbiCodeGen::GetPC() void SbiCodeGen::Statement() { - bStmnt = sal_True; + bStmnt = true; nLine = pParser->GetLine(); nCol = pParser->GetCol1(); @@ -62,7 +62,7 @@ void SbiCodeGen::GenStmnt() { if( bStmnt ) { - bStmnt = sal_False; + bStmnt = false; Gen( _STMNT, nLine, nCol ); } } -- cgit