]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/menuitem.h
Fixed nasty bug wxFont
[wxWidgets.git] / include / wx / gtk1 / menuitem.h
index f20657838abab6bc143e60110ebb90c36f24531b..77f08d493ea0fd1250ee99561150d06c4f44c108 100644 (file)
@@ -48,9 +48,11 @@ public:
   int  GetId() const { return m_id; }
   bool IsSeparator() const { return m_id == ID_SEPARATOR; }
 
-    // the item's text
-  void SetText(const wxString& str);
-  const wxString& GetText() const { return m_text; }
+    // the item's text = name
+  void SetName(const wxString& str);
+  void SetText(const wxString& str) { SetName(str); } // compatibility
+  const wxString& GetName() const { return m_text; }
+  const wxString& GetText() const { return GetName(); }
 
     // what kind of menu item we are
   void SetCheckable(bool checkable) { m_isCheckMenu = checkable; }
@@ -60,7 +62,7 @@ public:
   bool IsSubMenu() const { return m_subMenu != NULL; }
 
     // state
-  void Enable( bool enable = TRUE ); 
+  void Enable( bool enable = TRUE );
   bool IsEnabled() const { return m_isEnabled; }
   void Check( bool check = TRUE );
   bool IsChecked() const;
@@ -86,5 +88,5 @@ private:
 };
 
 
-#endif  
+#endif
         //__GTKMENUITEMH__