summaryrefslogtreecommitdiff
path: root/basic/source/comp/loops.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-08-19 17:49:02 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-08-19 17:55:27 +0900
commit38f3fe04324f68af67478f2f582129513c6c567e (patch)
treea3a17586dcb22d7038710d2f29ee0d54ff27d9a8 /basic/source/comp/loops.cxx
parentef1fabb29d8b38da11c75384cec8979bfbc2dca4 (diff)
sal_Bool to bool
Change-Id: I6206ee7e17e12388ea644123e180842df3e3a7ee
Diffstat (limited to 'basic/source/comp/loops.cxx')
-rw-r--r--basic/source/comp/loops.cxx4
1 files changed, 2 insertions, 2 deletions
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 );
}