]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/menuitem.h
Disabled memory tracing code for mingw32,
[wxWidgets.git] / include / wx / msw / menuitem.h
index eaced8f9902cc4d320c3bba9e258c5d87d6ba4d5..1be7c53921ee2999ed88a4b83ef1629730042a87 100644 (file)
@@ -49,7 +49,11 @@ public:
 
     virtual void Enable(bool bDoEnable = TRUE);
     virtual void Check(bool bDoCheck = TRUE);
-    virtual void IsChecked() const;
+    virtual bool IsChecked() const;
+
+#if wxUSE_ACCEL
+    virtual wxAcceleratorEntry *GetAccel() const;
+#endif // wxUSE_ACCEL
 
     // unfortunately needed to resolve ambiguity between
     // wxMenuItemBase::IsCheckable() and wxOwnerDrawn::IsCheckable()
@@ -60,9 +64,6 @@ public:
     // menu handle depending on what we're
     int GetRealId() const;
 
-    // delete the submenu
-    void DeleteSubMenu();
-
 private:
     DECLARE_DYNAMIC_CLASS(wxMenuItem)
 };