7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 00:21:25 +00:00

Fix missing From_UTF8().

Fixes https://gitlab.com/kicad/code/kicad/-/issues/18406
This commit is contained in:
Jeff Young 2024-07-20 20:46:00 +01:00
parent 3833922c35
commit 756445dd19

View File

@ -421,7 +421,7 @@ void KICAD_NETLIST_PARSER::parseComponent()
}
else if( token == T_STRING )
{
fieldValue = CurText();
fieldValue = From_UTF8( CurText() );
}
}