summaryrefslogtreecommitdiff
path: root/basic/source/sbx/sbxbool.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-08-12 09:07:20 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-08-12 09:16:58 +0900
commit1817cf60d1d5461b57b9b6fdb0b2849bb29389a8 (patch)
treebe18508a066566569701a40d9dda51edd029b637 /basic/source/sbx/sbxbool.cxx
parentc18c4f0547c5bdc388670af2f1501199c34ef540 (diff)
sal_Bool to bool
Change-Id: I61a6675df622232923a827fc20bf121dd03cd7da
Diffstat (limited to 'basic/source/sbx/sbxbool.cxx')
-rw-r--r--basic/source/sbx/sbxbool.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/sbx/sbxbool.cxx b/basic/source/sbx/sbxbool.cxx
index 25f8624af037..c843f1689273 100644
--- a/basic/source/sbx/sbxbool.cxx
+++ b/basic/source/sbx/sbxbool.cxx
@@ -75,7 +75,7 @@ enum SbxBOOL ImpGetBool( const SbxValues* p )
else if( !p->pOUString->equalsIgnoreAsciiCase( SbxRes( STRING_FALSE ) ) )
{
// it can be convertable to a number
- sal_Bool bError = sal_True;
+ bool bError = true;
double n;
SbxDataType t;
sal_uInt16 nLen = 0;
@@ -83,7 +83,7 @@ enum SbxBOOL ImpGetBool( const SbxValues* p )
{
if( nLen == p->pOUString->getLength() )
{
- bError = sal_False;
+ bError = false;
if( n != 0.0 )
nRes = SbxTRUE;
}