Printf was missing a GetChars
This commit is contained in:
parent
477069c063
commit
0de48234bc
|
@ -1536,7 +1536,7 @@ wxString TRACK::GetSelectMenuText() const
|
||||||
|
|
||||||
text.Printf( _("Track %s, net [%s] (%d) on layer %s, length: %s" ),
|
text.Printf( _("Track %s, net [%s] (%d) on layer %s, length: %s" ),
|
||||||
GetChars( ShowWidth() ), GetChars( netname ),
|
GetChars( ShowWidth() ), GetChars( netname ),
|
||||||
GetNet(), GetLayerName(),
|
GetNet(), GetChars( GetLayerName() ),
|
||||||
GetChars( ::LengthDoubleToString( GetLength() ) ) );
|
GetChars( ::LengthDoubleToString( GetLength() ) ) );
|
||||||
|
|
||||||
return text;
|
return text;
|
||||||
|
|
Loading…
Reference in New Issue