From cab22ffeac91e0409d76bd0c72a3f2bbff375f32 Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Thu, 28 Mar 2013 16:49:17 -0400 Subject: [PATCH] Fix a GOST compile error. --- common/common_plot_functions.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/common_plot_functions.cpp b/common/common_plot_functions.cpp index 4e07bdaa78..57ce954da2 100644 --- a/common/common_plot_functions.cpp +++ b/common/common_plot_functions.cpp @@ -59,7 +59,11 @@ void PlotWorkSheet( PLOTTER* plotter, const TITLE_BLOCK& aTitleBlock, int iusPerMil = plotter->GetIUsPerDecimil() * 10; wxSize pageSize = aPageInfo.GetSizeMils(); // in mils int xg, yg; -// int refx, refy; + +#if defined( KICAD_GOST ) + int refx, refy; +#endif + wxPoint pos, end, ref; wxString msg; wxSize text_size;