diff options
author | Vladimir Glazunov <vg@openoffice.org> | 2011-03-24 11:13:10 +0100 |
---|---|---|
committer | Vladimir Glazunov <vg@openoffice.org> | 2011-03-24 11:13:10 +0100 |
commit | 1a45c0f7fb9722620b67e412f407d42a673188fc (patch) | |
tree | a73b69772d8d3825199db233a9b292c86dc5b25d | |
parent | 6790a9cbc96d151228bcb2d0b6c6f6a5491615a6 (diff) |
#i10000# fix for Solaris warningsooo/DEV300_m104
-rw-r--r-- | connectivity/source/commontools/FValue.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/connectivity/source/commontools/FValue.cxx b/connectivity/source/commontools/FValue.cxx index db88c0a5b2..12a9f0f214 100644 --- a/connectivity/source/commontools/FValue.cxx +++ b/connectivity/source/commontools/FValue.cxx @@ -795,7 +795,6 @@ bool ORowSetValue::operator==(const ORowSetValue& _rRH) const case DataType::DOUBLE: case DataType::REAL: return getDouble() == _rRH.getDouble(); - break; default: switch(_rRH.m_eTypeKind) { @@ -803,7 +802,6 @@ bool ORowSetValue::operator==(const ORowSetValue& _rRH) const case DataType::DOUBLE: case DataType::REAL: return getDouble() == _rRH.getDouble(); - break; default: break; } @@ -827,7 +825,6 @@ bool ORowSetValue::operator==(const ORowSetValue& _rRH) const ::rtl::OUString aVal1(m_aValue.m_pString); ::rtl::OUString aVal2(_rRH.m_aValue.m_pString); return aVal1 == aVal2; - break; } default: if ( m_bSigned != _rRH.m_bSigned ) |