summaryrefslogtreecommitdiff
path: root/basic/source/runtime
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-09-04 18:42:23 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-09-05 10:40:17 +0900
commitcfa6f852429f96cf5bf5e9f7c03a9dacd320f4ba (patch)
tree41bde53018f16237e7fe67d9a1a49a2856f4dbd8 /basic/source/runtime
parent1146b889325fd01f24c6aacf557d3940dd147936 (diff)
sal_Bool to bool
Change-Id: Iebed1c159606ab695b049032da5a3509e468fb91
Diffstat (limited to 'basic/source/runtime')
-rw-r--r--basic/source/runtime/methods1.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/methods1.cxx b/basic/source/runtime/methods1.cxx
index 1b80eec60316..3e1d94900f76 100644
--- a/basic/source/runtime/methods1.cxx
+++ b/basic/source/runtime/methods1.cxx
@@ -384,7 +384,7 @@ RTLFUNC(CSng) // JSM
// #41690
double dVal = 0.0;
String aScanStr = pSbxVariable->GetString();
- SbError Error = SbxValue::ScanNumIntnl( aScanStr, dVal, /*bSingle=*/sal_True );
+ SbError Error = SbxValue::ScanNumIntnl( aScanStr, dVal, /*bSingle=*/true );
if( SbxBase::GetError() == SbxERR_OK && Error != SbxERR_OK )
StarBASIC::Error( Error );
nVal = (float)dVal;