]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/menu/menu.cpp
make it possible to use this sample for wxListbook testing too
[wxWidgets.git] / samples / menu / menu.cpp
index cda55f4beef85bde746fbdc1b0720c241b1f7b9f..4d02ddac3830e2cc4d1dc8874b6bfa69d2d6d3c0 100644 (file)
@@ -463,7 +463,7 @@ wxMenuItem *MyFrame::GetLastMenuItem() const
     wxMenuBar *menubar = GetMenuBar();
     wxMenu *menu = menubar->GetMenu(menubar->GetMenuCount() - 1);
 
-    wxMenuItemList::Node *node = menu->GetMenuItems().GetLast();
+    wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetLast();
     if ( !node )
     {
         wxLogWarning(wxT("No last item in the last menu!"));
@@ -857,7 +857,8 @@ void MyFrame::ShowContextMenu(const wxPoint& pos)
     menu.Append(Menu_Popup_Submenu, _T("&Submenu"), CreateDummyMenu(NULL));
     menu.Append(Menu_Popup_ToBeDeleted, _T("To be &deleted"));
     menu.Append(Menu_Popup_ToBeChecked, _T("To be &checked"), _T(""), TRUE);
-    menu.Append(Menu_Popup_ToBeGreyed, _T("To be &greyed"));
+    menu.Append(Menu_Popup_ToBeGreyed, _T("To be &greyed"),
+                _T("This menu item should be initially greyed out"));
     menu.AppendSeparator();
     menu.Append(Menu_File_Quit, _T("E&xit"));