Commit c38d59a6 authored by jean-pierre charras's avatar jean-pierre charras

Fix an error in sch_field.cpp I created in bzr 2923 version, that prevent...

Fix an error in sch_field.cpp I created in bzr 2923 version, that prevent compiling with wxWidgets 2.9.1 (was not detected by 2.8.12)
parent 1f087b2f
......@@ -450,7 +450,7 @@ void SCH_FIELD::Rotate( wxPoint rotationPoint )
wxString SCH_FIELD::GetSelectMenuText() const
{
wxString tmp;
tmp.Printf( _( "Field %s" ), GetChars( + GetName() ) );
tmp.Printf( _( "Field %s" ), GetChars( GetName() ) );
return tmp;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment