mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-19 00:21:36 +00:00
Fix accidental string+int in a debug message
This commit is contained in:
parent
128459470a
commit
bc614a5e0b
@ -1193,8 +1193,8 @@ bool PCB_EDIT_FRAME::OnHotkeyDuplicateOrArrayItem( int aIdCommand )
|
||||
break;
|
||||
|
||||
default:
|
||||
wxASSERT_MSG( false, "Unhandled move, duplicate or array for "
|
||||
"object type " + item->Type() );
|
||||
wxASSERT_MSG( false, wxString::Format( "Unhandled move, duplicate or array for "
|
||||
"object type %d", item->Type() ) );
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user