summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-10-20 19:22:27 +0200
committerLionel Elie Mamane <lionel@mamane.lu>2013-10-20 19:27:27 +0200
commit5dde691e3ed59d24606778b53accb0c2b0fc2b6d (patch)
tree4c12ba0a9b00b3133fbe6c30dbb3f5b453597ab6 /connectivity
parentdab66665e231a13f086c66b561b440bdedecb572 (diff)
an ORowSetValue constructed from a boolean is a boolean
as opposed to a bit Change-Id: Ife1c8cef5ca1266e161da3a9190e744dd70ec2fd
Diffstat (limited to 'connectivity')
-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 04c740a5e753..02ba27f5b195 100644
--- a/connectivity/source/commontools/FValue.cxx
+++ b/connectivity/source/commontools/FValue.cxx
@@ -682,7 +682,7 @@ ORowSetValue& ORowSetValue::operator=(const bool _rRH)
free();
m_aValue.m_bBool = _rRH;
- m_eTypeKind = DataType::BIT;
+ m_eTypeKind = DataType::BOOLEAN;
m_bNull = sal_False;
return *this;