Commit 23aea616 authored by Marco Mattila's avatar Marco Mattila

Fix wxUniCharRef casting issue in eeschema single part per line BOM generation code (?).

parent d57a1277
...@@ -124,7 +124,7 @@ static bool engStrToDouble( wxString aStr, double* aDouble ) ...@@ -124,7 +124,7 @@ static bool engStrToDouble( wxString aStr, double* aDouble )
wxString multiplierString = valueRegEx.GetMatch( aStr, 2 ); wxString multiplierString = valueRegEx.GetMatch( aStr, 2 );
double multiplier; double multiplier;
switch( multiplierString[0] ) switch( (wxChar)multiplierString[0] )
{ {
case 'p': case 'p':
multiplier = 1e-12; multiplier = 1e-12;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment