diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 15:50:52 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-11 20:21:50 +0000 |
commit | 7508574a10b1a082770b12b4279acadc22dedfc0 (patch) | |
tree | b2a2faa827df59a8cab6711c1e62afd0d0383e0b | |
parent | 01ed55a47ab323d2cbf98398e65a00b509053269 (diff) |
coverity#1130381 Missing break in switch
Change-Id: Ida8cdec56a667e46666a0f560ad196d61247fb49
-rw-r--r-- | sc/source/core/tool/scmatrix.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx index 090cada23e71..012185463057 100644 --- a/sc/source/core/tool/scmatrix.cxx +++ b/sc/source/core/tool/scmatrix.cxx @@ -541,8 +541,8 @@ svl::SharedString ScMatrixImpl::GetString(SCSIZE nC, SCSIZE nR) const return svl::SharedString::getEmptyString(); case mdds::mtm::element_numeric: case mdds::mtm::element_boolean: - OSL_FAIL("ScMatrixImpl::GetString: access error, no string"); fErr = maMat.get_numeric(aPos); + //fallthrough default: OSL_FAIL("ScMatrixImpl::GetString: access error, no string"); } |