]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/menuitem.h
made wxListbook events more consistent with wxNotebook ones (patch 1001271)
[wxWidgets.git] / include / wx / menuitem.h
index f7f5cc3c7230c220b8a6070b2525753d73e043c7..e35a5372adc44cad16ef5d9cdb5b405ec161e2b7 100644 (file)
@@ -71,6 +71,7 @@ public:
 
     // what kind of menu item we are
     wxItemKind GetKind() const { return m_kind; }
+    void SetKind(wxItemKind kind) { m_kind = kind; }
 
     virtual void SetCheckable(bool checkable) { m_kind = checkable ? wxITEM_CHECK : wxITEM_NORMAL; }
     bool IsCheckable() const