]> git.saurik.com Git - wxWidgets.git/blobdiff - src/xrc/xh_menu.cpp
setting correct 'default' for m_filterIndex, closes #11541
[wxWidgets.git] / src / xrc / xh_menu.cpp
index c278e30691ea9909bbab6a941abcfb33c4d2c3f1..f6cc1963f1c3d8187f8a8ccb6c8dc5b5ed776dd8 100644 (file)
@@ -21,6 +21,7 @@
 
 #ifndef WX_PRECOMP
     #include "wx/frame.h"
+    #include "wx/log.h"
     #include "wx/menu.h"
 #endif
 
@@ -88,7 +89,15 @@ 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 )
+                {
+                    ReportParamError
+                    (
+                        "checkable",
+                        "menu item can't have both <radio> and <checkable> properties"
+                    );
+                }
+
                 kind = wxITEM_CHECK;
             }