diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-17 14:56:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-17 15:20:44 +0200 |
commit | 66d412cacd0e22aee4e7ee119c93440c18baaac2 (patch) | |
tree | 095a3db63d6eeb57905428ca991c48b0f61094d5 /connectivity | |
parent | 9f23260105672903a047c2194a36ebd448fff135 (diff) |
loplugin:implicitboolconversion clean-up
Change-Id: I231012b4603158a6b81d42741076f1742da6695c
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/commontools/FValue.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/commontools/FValue.cxx b/connectivity/source/commontools/FValue.cxx index 6c2ee2fa82ae..cd3b9e241ed5 100644 --- a/connectivity/source/commontools/FValue.cxx +++ b/connectivity/source/commontools/FValue.cxx @@ -1234,7 +1234,7 @@ sal_uInt8 ORowSetValue::getUInt8() const break; case DataType::BIT: case DataType::BOOLEAN: - nRet = m_aValue.m_bBool; + nRet = int(m_aValue.m_bBool); break; case DataType::TINYINT: if ( m_bSigned ) |