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