Kaydet (Commit) 07eb648d authored tarafından Zolnai Tamás's avatar Zolnai Tamás

Remove some extra break

Change-Id: I55405c748d67101ecef8ef8a52037a26bc52b9f6
üst a468e386
...@@ -1961,8 +1961,10 @@ PolyPolygon EscherPropertyContainer::GetPolyPolygon( const ::com::sun::star::uno ...@@ -1961,8 +1961,10 @@ PolyPolygon EscherPropertyContainer::GetPolyPolygon( const ::com::sun::star::uno
switch( aSegments[ j ].Command ) switch( aSegments[ j ].Command )
{ {
case drawing::EnhancedCustomShapeSegmentCommand::UNKNOWN: break; case drawing::EnhancedCustomShapeSegmentCommand::UNKNOWN: break;
case drawing::EnhancedCustomShapeSegmentCommand::MOVETO : nPointIndex++; break; case drawing::EnhancedCustomShapeSegmentCommand::MOVETO :
case drawing::EnhancedCustomShapeSegmentCommand::LINETO : nPointIndex++; break; case drawing::EnhancedCustomShapeSegmentCommand::LINETO :
nPointIndex++;
break;
case drawing::EnhancedCustomShapeSegmentCommand::CURVETO : case drawing::EnhancedCustomShapeSegmentCommand::CURVETO :
{ {
aPolygon.SetFlags( nPointIndex, POLY_CONTROL); aPolygon.SetFlags( nPointIndex, POLY_CONTROL);
...@@ -1994,10 +1996,10 @@ PolyPolygon EscherPropertyContainer::GetPolyPolygon( const ::com::sun::star::uno ...@@ -1994,10 +1996,10 @@ PolyPolygon EscherPropertyContainer::GetPolyPolygon( const ::com::sun::star::uno
case drawing::EnhancedCustomShapeSegmentCommand::ARCANGLETO : case drawing::EnhancedCustomShapeSegmentCommand::ARCANGLETO :
nPointIndex += 2; nPointIndex += 2;
break; break;
case drawing::EnhancedCustomShapeSegmentCommand::DARKEN : break; case drawing::EnhancedCustomShapeSegmentCommand::DARKEN :
case drawing::EnhancedCustomShapeSegmentCommand::DARKENLESS : break; case drawing::EnhancedCustomShapeSegmentCommand::DARKENLESS :
case drawing::EnhancedCustomShapeSegmentCommand::LIGHTEN : break; case drawing::EnhancedCustomShapeSegmentCommand::LIGHTEN :
case drawing::EnhancedCustomShapeSegmentCommand::LIGHTENLESS : break; case drawing::EnhancedCustomShapeSegmentCommand::LIGHTENLESS :
break; break;
} }
} }
......
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