diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2012-08-14 07:32:51 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2012-08-14 07:37:19 +0900 |
commit | 1f224b02c8e9ff9420cec310a3bab567fc653c5f (patch) | |
tree | 8273ae8d75b86bed9ed36a8dfce72623bedcb3d4 /basic/source/comp/symtbl.cxx | |
parent | d170a36bbfc41d6a7d12a7ad242efe89b5f7e306 (diff) |
sal_Bool to bool
Change-Id: Idb5ef3cebdd45bd91f7c0ae34e422fd651d395c9
Diffstat (limited to 'basic/source/comp/symtbl.cxx')
-rw-r--r-- | basic/source/comp/symtbl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/comp/symtbl.cxx b/basic/source/comp/symtbl.cxx index 86fc853bab11..08f938238976 100644 --- a/basic/source/comp/symtbl.cxx +++ b/basic/source/comp/symtbl.cxx @@ -274,7 +274,7 @@ SbiSymDef::SbiSymDef( const String& rName ) : aName( rName ) bWithBrackets = bByVal = bChained = - bGlobal = sal_False; + bGlobal = false; pIn = pPool = NULL; nDefaultId = 0; @@ -344,7 +344,7 @@ sal_uInt32 SbiSymDef::Define() pIn->pParser->aGen.GenStmnt(); if( nChain ) pIn->pParser->aGen.BackChain( nChain ); nChain = n; - bChained = sal_True; + bChained = true; return nChain; } |