7
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:
Chris Pavlina 2016-01-15 22:47:47 -05:00
parent 128459470a
commit bc614a5e0b

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