summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-29 11:04:49 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-29 11:08:32 +0100
commit612dac063a144506b44f4ab2afa2c5cdf9d882b4 (patch)
tree856ab6ea17ca4760995b8ca41766c5c0c2115de7 /include
parent8a8ea11e5ea386af8b91b2ff36e5906afc571c2b (diff)
bool improvements
Change-Id: I0dc09b7a6ee2849bd0c2ffc31be45f81cd2c15ee
Diffstat (limited to 'include')
-rw-r--r--include/toolkit/helper/macros.hxx2
-rw-r--r--include/ucbhelper/macros.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/toolkit/helper/macros.hxx b/include/toolkit/helper/macros.hxx
index 984e080475fc..35ab2590aad0 100644
--- a/include/toolkit/helper/macros.hxx
+++ b/include/toolkit/helper/macros.hxx
@@ -84,7 +84,7 @@ ClassName* ClassName::GetImplementation( const ::com::sun::star::uno::Reference<
::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/include/ucbhelper/macros.hxx b/include/ucbhelper/macros.hxx
index 846f31bd645a..760b0d845e95 100644
--- a/include/ucbhelper/macros.hxx
+++ b/include/ucbhelper/macros.hxx
@@ -329,7 +329,7 @@ Class::getImplementationId() \
osl::Guard< osl::Mutex > aGuard( osl::Mutex::getGlobalMutex() ); \
if ( !pId ) \
{ \
- static cppu::OImplementationId id( sal_False ); \
+ static cppu::OImplementationId id( false ); \
pId = &id; \
} \
} \