diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2013-11-17 22:18:49 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2013-11-17 22:20:14 +0100 |
commit | 30e5bdcbf5bb3e4f848748bb2d8196bb0c3c3c93 (patch) | |
tree | 5a2147113ebd33a915a574e4a60577d270017a69 /connectivity/source | |
parent | 8a44e093ed88015a74abd33ba8b4a37dd0e3590c (diff) |
m_uInt8 not m_nInt8
Change-Id: I54524b6c7c19202bee049b61edc3f8e0a1e4fde0
Diffstat (limited to 'connectivity/source')
-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 25fa780f310d..2ce6da45fdac 100644 --- a/connectivity/source/commontools/FValue.cxx +++ b/connectivity/source/commontools/FValue.cxx @@ -457,7 +457,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 ) |