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 /embedserv/source | |
parent | 8a8ea11e5ea386af8b91b2ff36e5906afc571c2b (diff) |
bool improvements
Change-Id: I0dc09b7a6ee2849bd0c2ffc31be45f81cd2c15ee
Diffstat (limited to 'embedserv/source')
-rw-r--r-- | embedserv/source/embed/servprov.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embedserv/source/embed/servprov.cxx b/embedserv/source/embed/servprov.cxx index 93995d402fdd..29d85d9e60e4 100644 --- a/embedserv/source/embed/servprov.cxx +++ b/embedserv/source/embed/servprov.cxx @@ -180,7 +180,7 @@ uno::Sequence< sal_Int8 > SAL_CALL EmbedServer_Impl::getImplementationId() throw ::osl::MutexGuard guard( ::osl::Mutex::getGlobalMutex() ); if( ! pId ) { - static ::cppu::OImplementationId id( sal_False ); + static ::cppu::OImplementationId id( false ); pId = &id; } } |