summaryrefslogtreecommitdiff
path: root/filter/source/msfilter/escherex.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/msfilter/escherex.cxx')
-rw-r--r--filter/source/msfilter/escherex.cxx14
1 files changed, 8 insertions, 6 deletions
diff --git a/filter/source/msfilter/escherex.cxx b/filter/source/msfilter/escherex.cxx
index 293aead70e2b..6a8ea7fdd1f0 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -1961,8 +1961,10 @@ PolyPolygon EscherPropertyContainer::GetPolyPolygon( const ::com::sun::star::uno
switch( aSegments[ j ].Command )
{
case drawing::EnhancedCustomShapeSegmentCommand::UNKNOWN: break;
- case drawing::EnhancedCustomShapeSegmentCommand::MOVETO : nPointIndex++; break;
- case drawing::EnhancedCustomShapeSegmentCommand::LINETO : nPointIndex++; break;
+ case drawing::EnhancedCustomShapeSegmentCommand::MOVETO :
+ case drawing::EnhancedCustomShapeSegmentCommand::LINETO :
+ nPointIndex++;
+ break;
case drawing::EnhancedCustomShapeSegmentCommand::CURVETO :
{
aPolygon.SetFlags( nPointIndex, POLY_CONTROL);
@@ -1994,10 +1996,10 @@ PolyPolygon EscherPropertyContainer::GetPolyPolygon( const ::com::sun::star::uno
case drawing::EnhancedCustomShapeSegmentCommand::ARCANGLETO :
nPointIndex += 2;
break;
- case drawing::EnhancedCustomShapeSegmentCommand::DARKEN : break;
- case drawing::EnhancedCustomShapeSegmentCommand::DARKENLESS : break;
- case drawing::EnhancedCustomShapeSegmentCommand::LIGHTEN : break;
- case drawing::EnhancedCustomShapeSegmentCommand::LIGHTENLESS : break;
+ case drawing::EnhancedCustomShapeSegmentCommand::DARKEN :
+ case drawing::EnhancedCustomShapeSegmentCommand::DARKENLESS :
+ case drawing::EnhancedCustomShapeSegmentCommand::LIGHTEN :
+ case drawing::EnhancedCustomShapeSegmentCommand::LIGHTENLESS :
break;
}
}