From ff439ecd7f96185b44b4aff556b88bc991729e90 Mon Sep 17 00:00:00 2001 From: Dick Hollenbeck Date: Tue, 30 Apr 2013 10:52:18 -0500 Subject: [PATCH] wxString::Format() fix --- pcbnew/specctra_export.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcbnew/specctra_export.cpp b/pcbnew/specctra_export.cpp index 04ba49fc59..da48f13f49 100644 --- a/pcbnew/specctra_export.cpp +++ b/pcbnew/specctra_export.cpp @@ -1214,7 +1214,8 @@ void SPECCTRA_DB::fillBOUNDARY( BOARD* aBoard, BOUNDARY* boundary ) throw( IO_ER wxString error = wxString::Format( _( "Unable to find the next segment with an endpoint of (%d,%d)\n." "Edit Edge.Cuts interior graphics, making them contiguous polygons each." ), - prevPt + prevPt.x, + prevPt.y ); ThrowIOError( error );