wxString::Format() fix
This commit is contained in:
parent
f8f35a8cd0
commit
63985f67cf
|
@ -1214,7 +1214,8 @@ void SPECCTRA_DB::fillBOUNDARY( BOARD* aBoard, BOUNDARY* boundary ) throw( IO_ER
|
||||||
wxString error = wxString::Format(
|
wxString error = wxString::Format(
|
||||||
_( "Unable to find the next segment with an endpoint of (%d,%d)\n."
|
_( "Unable to find the next segment with an endpoint of (%d,%d)\n."
|
||||||
"Edit Edge.Cuts interior graphics, making them contiguous polygons each." ),
|
"Edit Edge.Cuts interior graphics, making them contiguous polygons each." ),
|
||||||
prevPt
|
prevPt.x,
|
||||||
|
prevPt.y
|
||||||
);
|
);
|
||||||
|
|
||||||
ThrowIOError( error );
|
ThrowIOError( error );
|
||||||
|
|
Loading…
Reference in New Issue