Eeschema: fix printf format string in find status message.

This commit is contained in:
Chris Pavlina 2016-03-22 11:39:55 -04:00 committed by Wayne Stambaugh
parent 1d55823fef
commit 3076e98b29
1 changed files with 2 additions and 2 deletions

View File

@ -251,11 +251,11 @@ SCH_ITEM* SCH_EDIT_FRAME::FindComponentAndItem( const wxString& aReference,
break;
case FIND_VALUE: // find value
msg_item.Printf( _( "value" ), GetChars( aSearchText ) );
msg_item.Printf( _( "value %s" ), GetChars( aSearchText ) );
break;
case FIND_FIELD: // find field. todo
msg_item.Printf( _( "field" ), GetChars( aSearchText ) );
msg_item.Printf( _( "field %s" ), GetChars( aSearchText ) );
break;
}