summaryrefslogtreecommitdiff
path: root/basic/source/comp/loops.cxx
diff options
context:
space:
mode:
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 );
}