summaryrefslogtreecommitdiff
path: root/connectivity/source
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-17 14:56:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-17 15:20:44 +0200
commit66d412cacd0e22aee4e7ee119c93440c18baaac2 (patch)
tree095a3db63d6eeb57905428ca991c48b0f61094d5 /connectivity/source
parent9f23260105672903a047c2194a36ebd448fff135 (diff)
loplugin:implicitboolconversion clean-up
Change-Id: I231012b4603158a6b81d42741076f1742da6695c
Diffstat (limited to 'connectivity/source')
-rw-r--r--connectivity/source/commontools/FValue.cxx2
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 )