Draw arcs, not pies, in DoDrawArc(): simply remove the apparently unnecessary
last lineto and closepath PostScript statements.
Closes #13141.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67590
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxString buffer;
buffer.Printf( "newpath\n"
"%f %f %f %f %f %f ellipse\n"
- "%f %f lineto\n"
- "closepath\n"
"stroke\n",
XLOG2DEV(xc), YLOG2DEV(yc),
XLOG2DEVREL(i_radius), YLOG2DEVREL(i_radius),
- alpha1, alpha2,
- XLOG2DEV(xc), YLOG2DEV(yc) );
+ alpha1, alpha2 );
buffer.Replace( ",", "." );
PsPrint( buffer );