diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-29 11:04:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-29 11:08:32 +0100 |
commit | 612dac063a144506b44f4ab2afa2c5cdf9d882b4 (patch) | |
tree | 856ab6ea17ca4760995b8ca41766c5c0c2115de7 /ucbhelper | |
parent | 8a8ea11e5ea386af8b91b2ff36e5906afc571c2b (diff) |
bool improvements
Change-Id: I0dc09b7a6ee2849bd0c2ffc31be45f81cd2c15ee
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/provider/contentidentifier.cxx | 2 | ||||
-rw-r--r-- | ucbhelper/source/provider/interactionrequest.cxx | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/ucbhelper/source/provider/contentidentifier.cxx b/ucbhelper/source/provider/contentidentifier.cxx index c700e741d3b7..ece3f0afaea7 100644 --- a/ucbhelper/source/provider/contentidentifier.cxx +++ b/ucbhelper/source/provider/contentidentifier.cxx @@ -142,7 +142,7 @@ ContentIdentifier::getImplementationId() osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); if ( !pId ) { - static cppu::OImplementationId id( sal_False ); + static cppu::OImplementationId id( false ); pId = &id; } } diff --git a/ucbhelper/source/provider/interactionrequest.cxx b/ucbhelper/source/provider/interactionrequest.cxx index 96f85778b2aa..4e06dfea7448 100644 --- a/ucbhelper/source/provider/interactionrequest.cxx +++ b/ucbhelper/source/provider/interactionrequest.cxx @@ -153,7 +153,7 @@ uno::Sequence< sal_Int8 > SAL_CALL InteractionRequest::getImplementationId() osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); if ( !pId ) { - static cppu::OImplementationId id( sal_False ); + static cppu::OImplementationId id( false ); pId = &id; } } @@ -305,7 +305,7 @@ uno::Sequence< sal_Int8 > SAL_CALL InteractionAbort::getImplementationId() osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); if ( !pId ) { - static cppu::OImplementationId id( sal_False ); + static cppu::OImplementationId id( false ); pId = &id; } } @@ -407,7 +407,7 @@ uno::Sequence< sal_Int8 > SAL_CALL InteractionRetry::getImplementationId() osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); if ( !pId ) { - static cppu::OImplementationId id( sal_False ); + static cppu::OImplementationId id( false ); pId = &id; } } @@ -509,7 +509,7 @@ uno::Sequence< sal_Int8 > SAL_CALL InteractionApprove::getImplementationId() osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); if ( !pId ) { - static cppu::OImplementationId id( sal_False ); + static cppu::OImplementationId id( false ); pId = &id; } } @@ -611,7 +611,7 @@ uno::Sequence< sal_Int8 > SAL_CALL InteractionDisapprove::getImplementationId() osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); if ( !pId ) { - static cppu::OImplementationId id( sal_False ); + static cppu::OImplementationId id( false ); pId = &id; } } @@ -715,7 +715,7 @@ InteractionSupplyAuthentication::getImplementationId() osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); if ( !pId ) { - static cppu::OImplementationId id( sal_False ); + static cppu::OImplementationId id( false ); pId = &id; } } @@ -979,7 +979,7 @@ uno::Sequence< sal_Int8 > SAL_CALL InteractionSupplyName::getImplementationId() osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); if ( !pId ) { - static cppu::OImplementationId id( sal_False ); + static cppu::OImplementationId id( false ); pId = &id; } } @@ -1096,7 +1096,7 @@ InteractionReplaceExistingData::getImplementationId() osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); if ( !pId ) { - static cppu::OImplementationId id( sal_False ); + static cppu::OImplementationId id( false ); pId = &id; } } |