]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/menu.cpp
fixed crash on startup under GTK
[wxWidgets.git] / src / msw / menu.cpp
index 1abab005d50f71d58928cda3ce2f59313aceed71..30e097fa4749288b4b32e2de705dd8c37a143cd4 100644 (file)
@@ -152,7 +152,7 @@ wxBEGIN_FLAGS( wxMenuBarStyle )
 wxEND_FLAGS( wxMenuBarStyle )
 
 // the negative id would lead the window (its superclass !) to vetoe streaming out otherwise
-bool wxMenuBarStreamingCallback( const wxObject *object, wxWriter * , wxPersister * , wxxVariantArray & )
+bool wxMenuBarStreamingCallback( const wxObject *WXUNUSED(object), wxWriter * , wxPersister * , wxxVariantArray & )
 {
     return true ;
 }
@@ -888,7 +888,7 @@ wxString wxMenuBar::GetLabelTop(size_t pos) const
     wxCHECK_MSG( pos < GetMenuCount(), wxEmptyString,
                  wxT("invalid menu index in wxMenuBar::GetLabelTop") );
 
-    return m_titles[pos];
+    return wxMenuItem::GetLabelFromText(m_titles[pos]);
 }
 
 // ---------------------------------------------------------------------------