summaryrefslogtreecommitdiff
path: root/basic/source/classes/sbunoobj.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-08-21 22:54:26 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-08-21 22:59:16 +0900
commit2efc59c9b6174e9b4b148a1c12dc8c5aac11865f (patch)
treee4373b57a438af2b047dc437c516930a9a14cce9 /basic/source/classes/sbunoobj.cxx
parentc2ead1e76ee63091bc00112e9b453b86487c2181 (diff)
sal_Bool to bool
Change-Id: I38141187c4f0809343a93c5765c0773d2321968a
Diffstat (limited to 'basic/source/classes/sbunoobj.cxx')
-rw-r--r--basic/source/classes/sbunoobj.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index b9ec529876b2..6005c7a76eec 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -2306,7 +2306,7 @@ void SbUnoObject::SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
}
// call the method
- GetSbData()->bBlockCompilerError = sal_True; // #106433 Block compiler errors for API calls
+ GetSbData()->bBlockCompilerError = true; // #106433 Block compiler errors for API calls
try
{
if( !bInvocation && mxUnoAccess.is() )
@@ -2350,7 +2350,7 @@ void SbUnoObject::SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
{
implHandleAnyException( ::cppu::getCaughtException() );
}
- GetSbData()->bBlockCompilerError = sal_False; // #106433 Unblock compiler errors
+ GetSbData()->bBlockCompilerError = false; // #106433 Unblock compiler errors
}
}
else
@@ -2361,8 +2361,8 @@ void SbUnoObject::SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
SbUnoObject::SbUnoObject( const rtl::OUString& aName_, const Any& aUnoObj_ )
: SbxObject( aName_ )
- , bNeedIntrospection( sal_True )
- , bNativeCOMObject( sal_False )
+ , bNeedIntrospection( true )
+ , bNativeCOMObject( false )
{
static Reference< XIntrospection > xIntrospection;
@@ -2396,7 +2396,7 @@ SbUnoObject::SbUnoObject( const rtl::OUString& aName_, const Any& aUnoObj_ )
// The remainder refers only to the introspection
if( !xTypeProvider.is() )
{
- bNeedIntrospection = sal_False;
+ bNeedIntrospection = false;
return;
}
@@ -2404,7 +2404,7 @@ SbUnoObject::SbUnoObject( const rtl::OUString& aName_, const Any& aUnoObj_ )
// hiding of equally named COM symbols, e.g. XInvocation::getValue
Reference< oleautomation::XAutomationObject > xAutomationObject( aUnoObj_, UNO_QUERY );
if( xAutomationObject.is() )
- bNativeCOMObject = sal_True;
+ bNativeCOMObject = true;
}
maTmpUnoObj = aUnoObj_;
@@ -2462,7 +2462,7 @@ void SbUnoObject::doIntrospection( void )
if( !bNeedIntrospection )
return;
- bNeedIntrospection = sal_False;
+ bNeedIntrospection = false;
if( !xIntrospection.is() )
{