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

This commit is contained in:
Marco Mattila 2012-02-24 17:00:56 +02:00
parent d57a12772a
commit 23aea616e0
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ static bool engStrToDouble( wxString aStr, double* aDouble )
wxString multiplierString = valueRegEx.GetMatch( aStr, 2 );
double multiplier;
switch( multiplierString[0] )
switch( (wxChar)multiplierString[0] )
{
case 'p':
multiplier = 1e-12;