]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/menucmn.cpp
X property data is long for format 32
[wxWidgets.git] / src / common / menucmn.cpp
index 0c85d548ba9230d618f4317c6ee54388d8d82565..edceb72cc52c0e9a4e5819276ef2f508f6ddde59 100644 (file)
@@ -307,7 +307,7 @@ int wxMenuBase::FindItem(const wxString& text) const
         // name just like the ordinary items
         if ( !item->IsSeparator() )
         {
-            if ( item->GetLabel() == label )
+            if ( item->GetItemLabelText() == label )
                 return item->GetId();
         }
     }
@@ -839,4 +839,18 @@ void wxMenuBarBase::UpdateMenus( void )
     }
 }
 
+#if WXWIN_COMPATIBILITY_2_8
+// get or change the label of the menu at given position
+void wxMenuBarBase::SetLabelTop(size_t pos, const wxString& label)
+{
+    SetMenuLabel(pos, label);
+}
+
+wxString wxMenuBarBase::GetLabelTop(size_t pos) const
+{
+    return GetMenuLabelText(pos);
+}
+#endif
+
+
 #endif // wxUSE_MENUS