]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/menu.h
wxRadioBox fixed on mac
[wxWidgets.git] / include / wx / gtk1 / menu.h
index c9d198017e4bb037c89eed66123b882524bfc53a..caa919c05d43386145464a878efcc46b75802cff 100644 (file)
@@ -45,6 +45,9 @@ public:
     void SetInvokingWindow( wxWindow *win );
     void UnsetInvokingWindow( wxWindow *win );
 
+    // common part of Append and Insert
+    bool GtkAppend(wxMenu *menu, const wxString& title);
+
     GtkAccelGroup   *m_accel;
     GtkItemFactory  *m_factory;
     GtkWidget       *m_menubar;
@@ -80,6 +83,8 @@ public:
     wxMenu(const wxString& title, const wxFunction func)
         : wxMenuBase(title)
     {
+        Init();
+
         Callback(func);
     }
 
@@ -96,6 +101,9 @@ private:
     // common code for all constructors:
     void Init();
 
+    // common part of Append and Insert
+    bool GtkAppend(wxMenuItem *item);
+
     DECLARE_DYNAMIC_CLASS(wxMenu)
 };