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
This commit is contained in:
Jon Neal 2016-07-10 23:10:03 -04:00 committed by Chris Pavlina
parent 1293d04a7a
commit 095063dbd9
1 changed files with 0 additions and 5 deletions

View File

@ -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;