7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-19 14:01:41 +00:00

Printf was missing a GetChars

This commit is contained in:
Lorenzo Marcantonio 2013-04-09 04:31:36 +02:00
parent 477069c063
commit 0de48234bc

View File

@ -1536,7 +1536,7 @@ wxString TRACK::GetSelectMenuText() const
text.Printf( _("Track %s, net [%s] (%d) on layer %s, length: %s" ),
GetChars( ShowWidth() ), GetChars( netname ),
GetNet(), GetLayerName(),
GetNet(), GetChars( GetLayerName() ),
GetChars( ::LengthDoubleToString( GetLength() ) ) );
return text;