Change reporter message of footprint missmatch to warning on netlist-import

The message of a changed footprint during netlist-import in pcbnew was declared
as RPT_UNDFINED and therefor the filter didn't work correctly ('Warning' was
in the message-string).
This makes the message a proper warning and enables filtering as expected.
This commit is contained in:
Marco Sterbik 2017-02-22 13:17:11 +01:00 committed by Maciej Suminski
parent 887f2b2a70
commit d284fb87e8
1 changed files with 2 additions and 2 deletions

View File

@ -273,11 +273,11 @@ void PCB_EDIT_FRAME::LoadFootprints( NETLIST& aNetlist, REPORTER* aReporter )
{
if( aReporter )
{
msg.Printf( _( "* Warning: component '%s': board footprint '%s', netlist footprint '%s'\n" ),
msg.Printf( _( "Footprint of component '%s' changed: board footprint '%s', netlist footprint '%s'\n" ),
GetChars( component->GetReference() ),
GetChars( fpOnBoard->GetFPID().Format() ),
GetChars( component->GetFPID().Format() ) );
aReporter->Report( msg );
aReporter->Report( msg, REPORTER::RPT_WARNING );
}
continue;