summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-20 16:52:22 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-21 08:54:44 +0000
commit383dbc04ee65b60e7946893614a6e6bb80981599 (patch)
treec78d417648f0482d83e6e410c317874c9488fae6 /filter
parentbb7d4a00941bc4394b35e79545ab48fb345b7bf9 (diff)
coverity#705160 Missing break in switch
Change-Id: I7be86ec16743dd8342cd82c9fcd089cb36d668ce
Diffstat (limited to 'filter')
-rw-r--r--filter/source/flash/swfwriter1.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/filter/source/flash/swfwriter1.cxx b/filter/source/flash/swfwriter1.cxx
index 754f8761c68f..4a67720b8a65 100644
--- a/filter/source/flash/swfwriter1.cxx
+++ b/filter/source/flash/swfwriter1.cxx
@@ -1803,7 +1803,7 @@ void Writer::Impl_writeActions( const GDIMetaFile& rMtf )
const MetaISectRectClipRegionAction* pA = (const MetaISectRectClipRegionAction*) pAction;
clipRect = pA->GetRect();
}
- //fall-through
+ // fall-through
case( META_CLIPREGION_ACTION ):
case( META_ISECTREGIONCLIPREGION_ACTION ):
case( META_MOVECLIPREGION_ACTION ):
@@ -1816,6 +1816,7 @@ void Writer::Impl_writeActions( const GDIMetaFile& rMtf )
{
bMap++;
}
+ // fall-through
case( META_REFPOINT_ACTION ):
case( META_LINECOLOR_ACTION ):
case( META_FILLCOLOR_ACTION ):