From 7d64d2e92a14fe9255b183bef12848338080bed9 Mon Sep 17 00:00:00 2001 From: Lorenzo Marcantonio Date: Tue, 9 Apr 2013 04:31:36 +0200 Subject: [PATCH] Printf was missing a GetChars --- pcbnew/class_track.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/class_track.cpp b/pcbnew/class_track.cpp index 1edb513bae..96586180e1 100644 --- a/pcbnew/class_track.cpp +++ b/pcbnew/class_track.cpp @@ -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;