]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/menu.h
Small fixes to wxChoice, wxComboBox and wxListBox
[wxWidgets.git] / include / wx / gtk1 / menu.h
index 6e5232dd50b9db5e6dbe806142529d9f772d72ca..9258a25e8570b3595ba21169f984f86c87c91cac 100644 (file)
@@ -93,7 +93,7 @@ public:
   bool IsSubMenu() const { return m_subMenu != NULL; }
 
     // state
-  void Enable(bool enable = TRUE) { m_isEnabled = enable; }
+  void Enable( bool enable = TRUE ); 
   bool IsEnabled() const { return m_isEnabled; }
   void Check( bool check = TRUE );
   bool IsChecked() const;
@@ -124,9 +124,12 @@ DECLARE_DYNAMIC_CLASS(wxMenu)
 
 public:
   // construction
-  wxMenu( const wxString& title = wxEmptyString, const wxFunction func = NULL );
+  wxMenu( const wxString& title = wxEmptyString, const wxFunction func = (wxFunction) NULL );
 
   // operations
+    // title
+  void SetTitle(const wxString& label);
+  const wxString GetTitle() const;
     // menu creation
   void AppendSeparator();
   void Append(int id, const wxString &item,