git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1634
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// create a menu bar
wxMenu *menuFile = new wxMenu;
// create a menu bar
wxMenu *menuFile = new wxMenu;
- menuFile->Append(Minimal_About, "&About...");
+ menuFile->Append(Minimal_About, "&About...", "Show about dialog");
menuFile->AppendSeparator();
menuFile->AppendSeparator();
- menuFile->Append(Minimal_Quit, "E&xit");
+ menuFile->Append(Minimal_Quit, "E&xit", "Quit this program");
// now append the freshly created menu to the menu bar...
wxMenuBar *menuBar = new wxMenuBar;
// now append the freshly created menu to the menu bar...
wxMenuBar *menuBar = new wxMenuBar;