summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-26 09:55:04 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-26 10:18:28 +0100
commit7704d6f76d78e199a44d7e5e9cad04fb3c611434 (patch)
tree959d987151db96ab4b0076a64af1ea4c1ba64ec9
parent41ce668f901daa0828349c8aa89a145a529b6e7a (diff)
coverity#1213138 Missing break in switch
Change-Id: Ia31045d8b79e8b7a7904a6114b8eb69f87315bcc
-rw-r--r--sw/source/filter/html/swhtml.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/sw/source/filter/html/swhtml.cxx b/sw/source/filter/html/swhtml.cxx
index 2fb457c14a66..6ea4a0fd9be3 100644
--- a/sw/source/filter/html/swhtml.cxx
+++ b/sw/source/filter/html/swhtml.cxx
@@ -2043,6 +2043,7 @@ static void lcl_swhtml_getItemInfo( const _HTMLAttr& rAttr,
{
case RES_CHRATR_FONT:
rFont = true;
+ //fall-through
case RES_CHRATR_FONTSIZE:
case RES_CHRATR_LANGUAGE:
case RES_CHRATR_POSTURE:
@@ -2052,6 +2053,7 @@ static void lcl_swhtml_getItemInfo( const _HTMLAttr& rAttr,
break;
case RES_CHRATR_CJK_FONT:
rFont = true;
+ //fall-through
case RES_CHRATR_CJK_FONTSIZE:
case RES_CHRATR_CJK_LANGUAGE:
case RES_CHRATR_CJK_POSTURE:
@@ -2061,6 +2063,7 @@ static void lcl_swhtml_getItemInfo( const _HTMLAttr& rAttr,
break;
case RES_CHRATR_CTL_FONT:
rFont = true;
+ //fall-through
case RES_CHRATR_CTL_FONTSIZE:
case RES_CHRATR_CTL_LANGUAGE:
case RES_CHRATR_CTL_POSTURE: