]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/carbon/menuitem.h
fix tags generation for OS X port after renaming
[wxWidgets.git] / include / wx / osx / carbon / menuitem.h
index cae55835830d8af2b6873641ba1df67d9f37047d..6171b124ee78699dea8dd15ba34a8a91459eb669 100644 (file)
@@ -22,6 +22,9 @@
 // ----------------------------------------------------------------------------
 // wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour
 // ----------------------------------------------------------------------------
+
+class WXDLLIMPEXP_FWD_CORE wxMenuItemImpl ;
+
 class WXDLLIMPEXP_CORE wxMenuItem: public wxMenuItemBase
 {
 public:
@@ -53,9 +56,8 @@ public:
     void SetRadioGroupStart(int start);
     void SetRadioGroupEnd(int end);
 
+    wxMenuItemImpl* GetPeer() { return m_peer; }
 private:
-    void DoUpdateItemBitmap( WXHMENU menu, wxUint16 index) ;
-
     void UncheckRadio() ;
 
     // the positions of the first and last items of the radio group this item
@@ -73,6 +75,8 @@ private:
 
     wxBitmap  m_bitmap; // Bitmap for menuitem, if any
     void* m_menu ; // the appropriate menu , may also be a system menu
+    
+    wxMenuItemImpl* m_peer;
 
     DECLARE_DYNAMIC_CLASS(wxMenuItem)
 };