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;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
wxASSERT_MSG( false, "Unhandled move, duplicate or array for "
|
wxASSERT_MSG( false, wxString::Format( "Unhandled move, duplicate or array for "
|
||||||
"object type " + item->Type() );
|
"object type %d", item->Type() ) );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue