X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d2ffaf168d8c992e7e431032d6f3e53989b33ffe..c3e433b15929171af57df3c9c3c63d6ab8aa720b:/src/xrc/xh_menu.cpp diff --git a/src/xrc/xh_menu.cpp b/src/xrc/xh_menu.cpp index c278e30691..fe700cdd5c 100644 --- a/src/xrc/xh_menu.cpp +++ b/src/xrc/xh_menu.cpp @@ -21,6 +21,7 @@ #ifndef WX_PRECOMP #include "wx/frame.h" + #include "wx/log.h" #include "wx/menu.h" #endif @@ -88,7 +89,13 @@ wxObject *wxMenuXmlHandler::DoCreateResource() kind = wxITEM_RADIO; if (GetBool(wxT("checkable"))) { - wxASSERT_MSG( kind == wxITEM_NORMAL, _T("can't have both checkable and radio button at once") ); + if ( kind != wxITEM_NORMAL ) + { + wxLogWarning(_("XRC syntax error: a menu item can't have " + "both \"radio\" and \"checkable\" " + "properties, ignoring the former.")); + } + kind = wxITEM_CHECK; }