Printf was missing a GetChars

This commit is contained in:
Lorenzo Marcantonio 2013-04-09 04:31:36 +02:00
parent 477069c063
commit 0de48234bc
1 changed files with 1 additions and 1 deletions

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;