From 6fa4f1e6ac9d64f8a70380f1213d406f911f4107 Mon Sep 17 00:00:00 2001 From: Dick Hollenbeck Date: Mon, 13 May 2013 12:30:27 -0500 Subject: [PATCH] remove non-UTF8 encoded characters from source tree & format fix --- eeschema/eeschema.cpp | 8 ++++---- eeschema/libeditframe.h | 2 +- gerbview/class_GERBER.cpp | 4 ++-- gerbview/dcode.cpp | 2 +- pcb_calculator/units_scales.h | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eeschema/eeschema.cpp b/eeschema/eeschema.cpp index 2512d3cbd1..c2535befc9 100644 --- a/eeschema/eeschema.cpp +++ b/eeschema/eeschema.cpp @@ -111,10 +111,10 @@ bool EDA_APP::OnInit() } if( m_Checker && m_Checker->IsAnotherRunning() ) - { - if( !IsOK( NULL, _( "Eeschema is already running, Continue?" ) ) ) - return false; - } + { + if( !IsOK( NULL, _( "Eeschema is already running, Continue?" ) ) ) + return false; + } // Give a default colour for all layers // (actual color will beinitialized by config) diff --git a/eeschema/libeditframe.h b/eeschema/libeditframe.h index 439b0d059d..af7e5b001c 100644 --- a/eeschema/libeditframe.h +++ b/eeschema/libeditframe.h @@ -268,7 +268,7 @@ public: * accordint to the current selected unit and De Morgan selection * although it is stored without ? and part id. * @param aDC = the current device context - * @param aOffset = a draw offset. usually à,0 to draw on the screen, but + * @param aOffset = a draw offset. usually 0,0 to draw on the screen, but * can be set to page size / 2 to draw or print in SVG format. */ void RedrawComponent( wxDC* aDC, wxPoint aOffset ); diff --git a/gerbview/class_GERBER.cpp b/gerbview/class_GERBER.cpp index 12af4a8929..91a3c3dba9 100644 --- a/gerbview/class_GERBER.cpp +++ b/gerbview/class_GERBER.cpp @@ -50,8 +50,8 @@ extern int scaletoIU( double aCoord, bool isMetric ); // defined it rs274d * * D_CODES: * D01 ... D9 = action codes: - * D01 = activating light (lower pen) when di ¿½ placement - * D02 = light extinction (lift pen) when di ¿½ placement + * D01 = activating light (lower pen) when di placement + * D02 = light extinction (lift pen) when di placement * D03 Flash * D09 = VAPE Flash * D10 ... = Indentification Tool (Opening) diff --git a/gerbview/dcode.cpp b/gerbview/dcode.cpp index 49da2a041e..f8a43bb263 100644 --- a/gerbview/dcode.cpp +++ b/gerbview/dcode.cpp @@ -321,7 +321,7 @@ void GERBVIEW_FRAME::CopyDCodesSizeToItems() gerb_item->m_Shape = GBR_SPOT_RECT; break; - case APT_POLYGON: /* spot regular polyg 3 to 1é edges */ + case APT_POLYGON: gerb_item->m_Shape = GBR_SPOT_POLY; break; diff --git a/pcb_calculator/units_scales.h b/pcb_calculator/units_scales.h index 63e9310cea..4802ace7b4 100644 --- a/pcb_calculator/units_scales.h +++ b/pcb_calculator/units_scales.h @@ -10,7 +10,7 @@ #define UNIT_MM 1e-3 // mm to meter #define UNIT_CM 1e-2 // cm to meter -#define UNIT_MICRON 1e-6 // µm to meter +#define UNIT_MICRON 1e-6 // um to meter #define UNIT_INCH (1e-2*2.54) // inch to meter #define UNIT_MIL (1e-5*2.54) // mil (or thou) to meter