summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-21 11:03:45 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-21 11:13:54 +0000
commitfe0f96e4aafc9ae39fab7bc13e7fd9563ff30cd8 (patch)
tree0cb50a514f226ca1921d30eee5c2372d20f4fb65 /xmloff
parent27a8609b2086d232c4d1ff8b92996d638b30cac1 (diff)
coverity#705345 Missing break in switch
Change-Id: I7ed37e384a0f3bb3863d957ac0333ddc2c7434a3
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/undlihdl.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/xmloff/source/style/undlihdl.cxx b/xmloff/source/style/undlihdl.cxx
index 7043194c525e..a2d8da6aed43 100644
--- a/xmloff/source/style/undlihdl.cxx
+++ b/xmloff/source/style/undlihdl.cxx
@@ -209,6 +209,7 @@ bool XMLUnderlineStylePropHdl::importXML( const OUString& rStrImpValue, uno::Any
case awt::FontUnderline::SINGLE:
// keep double or bold line style
eNewUnderline = eUnderline;
+ //fall-through
case awt::FontUnderline::DOTTED:
// The line style has priority over a double type.
if( awt::FontUnderline::BOLD == eUnderline )