Fix accidental string+int in a debug message

This commit is contained in:
Chris Pavlina 2016-01-15 22:47:47 -05:00
parent 128459470a
commit bc614a5e0b
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}