Kaydet (Commit) 383dbc04 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#705160 Missing break in switch

Change-Id: I7be86ec16743dd8342cd82c9fcd089cb36d668ce
üst bb7d4a00
...@@ -1803,7 +1803,7 @@ void Writer::Impl_writeActions( const GDIMetaFile& rMtf ) ...@@ -1803,7 +1803,7 @@ void Writer::Impl_writeActions( const GDIMetaFile& rMtf )
const MetaISectRectClipRegionAction* pA = (const MetaISectRectClipRegionAction*) pAction; const MetaISectRectClipRegionAction* pA = (const MetaISectRectClipRegionAction*) pAction;
clipRect = pA->GetRect(); clipRect = pA->GetRect();
} }
//fall-through // fall-through
case( META_CLIPREGION_ACTION ): case( META_CLIPREGION_ACTION ):
case( META_ISECTREGIONCLIPREGION_ACTION ): case( META_ISECTREGIONCLIPREGION_ACTION ):
case( META_MOVECLIPREGION_ACTION ): case( META_MOVECLIPREGION_ACTION ):
...@@ -1816,6 +1816,7 @@ void Writer::Impl_writeActions( const GDIMetaFile& rMtf ) ...@@ -1816,6 +1816,7 @@ void Writer::Impl_writeActions( const GDIMetaFile& rMtf )
{ {
bMap++; bMap++;
} }
// fall-through
case( META_REFPOINT_ACTION ): case( META_REFPOINT_ACTION ):
case( META_LINECOLOR_ACTION ): case( META_LINECOLOR_ACTION ):
case( META_FILLCOLOR_ACTION ): case( META_FILLCOLOR_ACTION ):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment