diff --git a/pcbnew/netlist.cpp b/pcbnew/netlist.cpp index a8108f28a9..5ceb8cfe20 100644 --- a/pcbnew/netlist.cpp +++ b/pcbnew/netlist.cpp @@ -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;