Add missing cases to silence compiler warnings
This commit is contained in:
parent
7526d2affb
commit
b8d2802cfe
|
@ -230,6 +230,10 @@ void SVG_PLOTTER::setSVGPlotStyle( bool aIsGroup, const std::string& aExtraStyle
|
||||||
case FILLED_WITH_BG_BODYCOLOR:
|
case FILLED_WITH_BG_BODYCOLOR:
|
||||||
fputs( "fill-opacity:0.6; ", outputFile );
|
fputs( "fill-opacity:0.6; ", outputFile );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case FILLED_WITH_COLOR:
|
||||||
|
wxFAIL_MSG( "FILLED_WITH_COLOR not implemented" );
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
double pen_w = userToDeviceSize( GetCurrentLineWidth() );
|
double pen_w = userToDeviceSize( GetCurrentLineWidth() );
|
||||||
|
@ -549,6 +553,10 @@ void SVG_PLOTTER::PlotPoly( const std::vector<wxPoint>& aCornerList,
|
||||||
case FILLED_SHAPE:
|
case FILLED_SHAPE:
|
||||||
setSVGPlotStyle( false, "fill-rule:evenodd;" );
|
setSVGPlotStyle( false, "fill-rule:evenodd;" );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case FILLED_WITH_COLOR:
|
||||||
|
wxFAIL_MSG( "FILLED_WITH_COLOR not implemented" );
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
DPOINT pos = userToDeviceCoordinates( aCornerList[0] );
|
DPOINT pos = userToDeviceCoordinates( aCornerList[0] );
|
||||||
|
|
Loading…
Reference in New Issue