summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-11-17 22:18:49 +0100
committerLionel Elie Mamane <lionel@mamane.lu>2013-11-17 21:01:24 -0600
commit937ee32603381cb464d6cd8d7732db3ec5cac54c (patch)
tree3f4778e98042b11afed945d84adf834de602d7a2 /connectivity
parent7eae50f9ff5877ef880be9a85d3f7e52b1fec49f (diff)
m_uInt8 not m_nInt8
Change-Id: I54524b6c7c19202bee049b61edc3f8e0a1e4fde0 Reviewed-on: https://gerrit.libreoffice.org/6705 Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu> Tested-by: Lionel Elie Mamane <lionel@mamane.lu>
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 0dd208ca1cc0..57d4623b5311 100644
--- a/connectivity/source/commontools/FValue.cxx
+++ b/connectivity/source/commontools/FValue.cxx
@@ -444,7 +444,7 @@ ORowSetValue& ORowSetValue::operator=(const ORowSetValue& _rRH)
if ( _rRH.m_bSigned )
m_aValue.m_nInt8 = _rRH.m_aValue.m_nInt8;
else
- m_aValue.m_nInt8 = _rRH.m_aValue.m_uInt8;
+ m_aValue.m_uInt8 = _rRH.m_aValue.m_uInt8;
break;
case DataType::SMALLINT:
if ( _rRH.m_bSigned )