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)

This commit is contained in:
jean-pierre charras 2011-03-30 13:20:05 +02:00
parent 1f087b2f55
commit c38d59a609
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}