summaryrefslogtreecommitdiffstats
path: root/basic/source/comp/symtbl.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/comp/symtbl.cxx
parentRemove dead code (diff)
downloadcore-407509c058c44182859e90a89a6ddb2b28edc053.tar.gz
core-407509c058c44182859e90a89a6ddb2b28edc053.zip
sal_Bool to bool
Change-Id: I75dd089b34c94831bfdfd0e02585af7609013a08
Diffstat (limited to 'basic/source/comp/symtbl.cxx')
-rw-r--r--basic/source/comp/symtbl.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/comp/symtbl.cxx b/basic/source/comp/symtbl.cxx
index fe47cbc3b910..395f19aa24ca 100644
--- a/basic/source/comp/symtbl.cxx
+++ b/basic/source/comp/symtbl.cxx
@@ -51,7 +51,7 @@ const rtl::OUString& SbiStringPool::Find( sal_uInt32 n ) const
return aData[n - 1];
}
-short SbiStringPool::Add( const rtl::OUString& rVal, sal_Bool bNoCase )
+short SbiStringPool::Add( const rtl::OUString& rVal, bool bNoCase )
{
sal_uInt32 n = aData.size();
for( sal_uInt32 i = 0; i < n; ++i )
@@ -372,7 +372,7 @@ SbiSymScope SbiSymDef::GetScope() const
// 3) aLabels: labels
SbiProcDef::SbiProcDef( SbiParser* pParser, const String& rName,
- sal_Bool bProcDecl )
+ bool bProcDecl )
: SbiSymDef( rName )
, aParams( pParser->aGblStrings, SbPARAM ) // is dumped
, aLabels( pParser->aLclStrings, SbLOCAL ) // is not dumped
@@ -385,8 +385,8 @@ SbiProcDef::SbiProcDef( SbiParser* pParser, const String& rName,
nLine2 = 0;
mePropMode = PROPERTY_MODE_NONE;
bPublic = true;
- bCdecl = sal_False;
- bStatic = sal_False;
+ bCdecl = false;
+ bStatic = false;
// For return values the first element of the parameter
// list is always defined with name and type of the proc
aParams.AddSym( aName );