PCB_EXPR_EVALUATOR: another string fix for wx 3.0

This commit is contained in:
Tomasz Wlostowski 2020-08-14 14:36:27 +02:00
parent edda024285
commit 9cdada9eb4
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ LIBEVAL::FUNC_CALL_REF PCB_EXPR_UCODE::CreateFuncCall( const wxString& aName )
{
PCB_EXPR_BUILTIN_FUNCTIONS& registry = PCB_EXPR_BUILTIN_FUNCTIONS::Instance();
return registry.Get( wxString::FromUTF8( aName ).Lower() );
return registry.Get( aName.Lower() );
}