diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-26 09:47:34 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-26 10:18:27 +0100 |
commit | 5b2aaefb896dfe50d9cd1551ef46cacaddcf92b7 (patch) | |
tree | 3e1f9c429365db8ef60973b2d3d8f47c0bf4c572 /sax/source/tools | |
parent | 55029129aa92f7906bb8b91464fb74aa4d9e72e3 (diff) |
coverity#982640 Missing break in switch
Change-Id: If2a14edafb72844061dcdd1ee3507d7a215220f1
Diffstat (limited to 'sax/source/tools')
-rw-r--r-- | sax/source/tools/converter.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx index d332de0c2866..20643c6e6d9e 100644 --- a/sax/source/tools/converter.cxx +++ b/sax/source/tools/converter.cxx @@ -349,6 +349,7 @@ void Converter::convertMeasure( OUStringBuffer& rBuffer, case MeasureUnit::MM_10TH: OSL_ENSURE( MeasureUnit::INCH == nTargetUnit, "output unit not supported for 1/100mm values" ); + //fall-through case MeasureUnit::MM: // 0.01mm = 1 mm/100 (exactly) nMul = 10; |