diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-30 13:04:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-30 14:19:08 +0100 |
commit | 580fe11522da7691c2bb6901554c95516679df01 (patch) | |
tree | cf72cee5d9f090e86db26d55d729ee21be381919 /sw | |
parent | 1401a888575ffeff36e83d2213d8e3d6d85380a0 (diff) |
coverity#1078633 Missing break in switch
Change-Id: I37c46fd88bbc7a66a6c5691dbd79754fa5078ea5
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/html/parcss1.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/filter/html/parcss1.cxx b/sw/source/filter/html/parcss1.cxx index c98042734025..1a96cfd9fe62 100644 --- a/sw/source/filter/html/parcss1.cxx +++ b/sw/source/filter/html/parcss1.cxx @@ -1052,6 +1052,7 @@ CSS1Expression *CSS1Parser::ParseDeclaration( OUString& rProperty ) case CSS1_EMX: if( '-'==cSign ) nValue = -nValue; + //fall-through case CSS1_STRING: case CSS1_PERCENTAGE: case CSS1_IDENT: |