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 /connectivity | |
parent | 8a8ea11e5ea386af8b91b2ff36e5906afc571c2b (diff) |
bool improvements
Change-Id: I0dc09b7a6ee2849bd0c2ffc31be45f81cd2c15ee
Diffstat (limited to 'connectivity')
6 files changed, 6 insertions, 6 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_baseresultset.cxx b/connectivity/source/drivers/postgresql/pq_baseresultset.cxx index 1747909458b9..594fe1554447 100644 --- a/connectivity/source/drivers/postgresql/pq_baseresultset.cxx +++ b/connectivity/source/drivers/postgresql/pq_baseresultset.cxx @@ -224,7 +224,7 @@ Sequence< sal_Int8> BaseResultSet::getImplementationId() throw( RuntimeException MutexGuard guard( osl::Mutex::getGlobalMutex() ); if( ! pId ) { - static cppu::OImplementationId id(sal_False); + static cppu::OImplementationId id(false); pId = &id; } } diff --git a/connectivity/source/drivers/postgresql/pq_fakedupdateableresultset.cxx b/connectivity/source/drivers/postgresql/pq_fakedupdateableresultset.cxx index bc6a2271c34e..121aa7bf9d92 100644 --- a/connectivity/source/drivers/postgresql/pq_fakedupdateableresultset.cxx +++ b/connectivity/source/drivers/postgresql/pq_fakedupdateableresultset.cxx @@ -115,7 +115,7 @@ com::sun::star::uno::Sequence< sal_Int8> FakedUpdateableResultSet::getImplementa MutexGuard guard( osl::Mutex::getGlobalMutex() ); if( ! pId ) { - static cppu::OImplementationId id(sal_False); + static cppu::OImplementationId id(false); pId = &id; } } diff --git a/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx b/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx index 23ef836b16ac..af99b4b6f77c 100644 --- a/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx +++ b/connectivity/source/drivers/postgresql/pq_preparedstatement.cxx @@ -291,7 +291,7 @@ Sequence< sal_Int8> PreparedStatement::getImplementationId() throw ( RuntimeExce MutexGuard guard( osl::Mutex::getGlobalMutex() ); if( ! pId ) { - static cppu::OImplementationId id(sal_False); + static cppu::OImplementationId id(false); pId = &id; } } diff --git a/connectivity/source/drivers/postgresql/pq_statement.cxx b/connectivity/source/drivers/postgresql/pq_statement.cxx index 91272046b727..466fa61fe465 100644 --- a/connectivity/source/drivers/postgresql/pq_statement.cxx +++ b/connectivity/source/drivers/postgresql/pq_statement.cxx @@ -236,7 +236,7 @@ Sequence< sal_Int8> Statement::getImplementationId() throw ( RuntimeException ) MutexGuard guard( osl::Mutex::getGlobalMutex() ); if( ! pId ) { - static cppu::OImplementationId id(sal_False); + static cppu::OImplementationId id(false); pId = &id; } } diff --git a/connectivity/source/drivers/postgresql/pq_updateableresultset.cxx b/connectivity/source/drivers/postgresql/pq_updateableresultset.cxx index f105d5c7d9bc..ef55d0f40b26 100644 --- a/connectivity/source/drivers/postgresql/pq_updateableresultset.cxx +++ b/connectivity/source/drivers/postgresql/pq_updateableresultset.cxx @@ -176,7 +176,7 @@ com::sun::star::uno::Sequence< sal_Int8> UpdateableResultSet::getImplementationI MutexGuard guard( osl::Mutex::getGlobalMutex() ); if( ! pId ) { - static cppu::OImplementationId id(sal_False); + static cppu::OImplementationId id(false); pId = &id; } } diff --git a/connectivity/source/drivers/postgresql/pq_xbase.cxx b/connectivity/source/drivers/postgresql/pq_xbase.cxx index a0b67a1b0f7d..f4f8b987295b 100644 --- a/connectivity/source/drivers/postgresql/pq_xbase.cxx +++ b/connectivity/source/drivers/postgresql/pq_xbase.cxx @@ -202,7 +202,7 @@ Sequence< sal_Int8> ReflectionBase::getImplementationId() throw( RuntimeExceptio MutexGuard guard( osl::Mutex::getGlobalMutex() ); if( ! pId ) { - static cppu::OImplementationId id(sal_False); + static cppu::OImplementationId id(false); pId = &id; } } |