diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-21 11:03:45 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-21 11:13:54 +0000 |
commit | fe0f96e4aafc9ae39fab7bc13e7fd9563ff30cd8 (patch) | |
tree | 0cb50a514f226ca1921d30eee5c2372d20f4fb65 /xmloff | |
parent | 27a8609b2086d232c4d1ff8b92996d638b30cac1 (diff) |
coverity#705345 Missing break in switch
Change-Id: I7ed37e384a0f3bb3863d957ac0333ddc2c7434a3
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/undlihdl.cxx | 1 |
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 ) |