summaryrefslogtreecommitdiff
path: root/basic/source/runtime/basrdll.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-08-22 19:20:19 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-08-22 19:25:08 +0900
commit407509c058c44182859e90a89a6ddb2b28edc053 (patch)
tree6e6108f4195eb28bf7ebad4db16e67ef5efd1b6a /basic/source/runtime/basrdll.cxx
parent0c89907c8310db8c66a16efac05f0d749a4d1d15 (diff)
sal_Bool to bool
Change-Id: I75dd089b34c94831bfdfd0e02585af7609013a08
Diffstat (limited to 'basic/source/runtime/basrdll.cxx')
-rw-r--r--basic/source/runtime/basrdll.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/runtime/basrdll.cxx b/basic/source/runtime/basrdll.cxx
index d5498a400d5b..a49b6f379d91 100644
--- a/basic/source/runtime/basrdll.cxx
+++ b/basic/source/runtime/basrdll.cxx
@@ -68,7 +68,7 @@ void BasicDLL::BasicBreak()
{
// bJustStopping: if there's someone pressing STOP like crazy umpteen times,
// but the Basic doesn't stop early enough, the box might appear more often...
- static sal_Bool bJustStopping = sal_False;
+ static bool bJustStopping = sal_False;
BasicDLL* pThis = BASIC_DLL();
DBG_ASSERT( pThis, "BasicDLL::EnableBreak: Noch keine Instanz!" );
@@ -76,10 +76,10 @@ void BasicDLL::BasicBreak()
{
if ( StarBASIC::IsRunning() && !bJustStopping && ( pThis->bBreakEnabled || pThis->bDebugMode ) )
{
- bJustStopping = sal_True;
+ bJustStopping = true;
StarBASIC::Stop();
InfoBox( 0, BasResId(IDS_SBERR_TERMINATED).toString() ).Execute();
- bJustStopping = sal_False;
+ bJustStopping = false;
}
}
}