connectivity/source/commontools/FValue.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 937ee32603381cb464d6cd8d7732db3ec5cac54c Author: Julien Nabet <[email protected]> Date: Sun Nov 17 22:18:49 2013 +0100 m_uInt8 not m_nInt8 Change-Id: I54524b6c7c19202bee049b61edc3f8e0a1e4fde0 Reviewed-on: https://gerrit.libreoffice.org/6705 Reviewed-by: Lionel Elie Mamane <[email protected]> Tested-by: Lionel Elie Mamane <[email protected]> diff --git a/connectivity/source/commontools/FValue.cxx b/connectivity/source/commontools/FValue.cxx index 0dd208c..57d4623 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 ) _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
