From 095063dbd9b6552c7d33ed2325363f341072f368 Mon Sep 17 00:00:00 2001 From: Jon Neal Date: Sun, 10 Jul 2016 23:10:03 -0400 Subject: [PATCH] Remove code since minimum wxwidgets version is 3.0.0. This issue was fixed in 2.9.2 according to https://lists.launchpad.net/kicad-developers/msg06421.html --- common/base_units.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/common/base_units.cpp b/common/base_units.cpp index 7cf035c470..bd03bcf3a6 100644 --- a/common/base_units.cpp +++ b/common/base_units.cpp @@ -312,11 +312,6 @@ double DoubleValueFromString( EDA_UNITS_T aUnits, const wxString& aTextValue ) // Convert the period in decimal point buf.Replace( wxT( "." ), wxString( decimal_point, 1 ) ); - // An ugly fix needed by WxWidgets 2.9.1 that sometimes - // back to a point as separator, although the separator is the comma - // TODO: remove this line if WxWidgets 2.9.2 fixes this issue - buf.Replace( wxT( "," ), wxString( decimal_point, 1 ) ); - // Find the end of the numeric part unsigned brk_point = 0;