summaryrefslogtreecommitdiffstats
path: root/sc/source/core/tool/scmatrix.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-11 15:50:52 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-11 20:21:50 +0000
commit7508574a10b1a082770b12b4279acadc22dedfc0 (patch)
treeb2a2faa827df59a8cab6711c1e62afd0d0383e0b /sc/source/core/tool/scmatrix.cxx
parentcoverity#1130384 Missing break in switch (diff)
downloadcore-7508574a10b1a082770b12b4279acadc22dedfc0.tar.gz
core-7508574a10b1a082770b12b4279acadc22dedfc0.zip
coverity#1130381 Missing break in switch
Change-Id: Ida8cdec56a667e46666a0f560ad196d61247fb49
Diffstat (limited to 'sc/source/core/tool/scmatrix.cxx')
-rw-r--r--sc/source/core/tool/scmatrix.cxx2
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");
}