- wxMenu *menuFile = new wxMenu("", wxMENU_TEAROFF);
-
-#ifdef __WXMAC__
- // since the about should be in the help menu for auto-relocation we have to do a little more...
- wxMenu *helpMenu = new wxMenu("", wxMENU_TEAROFF);
- helpMenu->Append(Minimal_About, "&About...\tCntrl+A", "Show about dialog");
-#else
- menuFile->Append(Minimal_About, "&About...\tCtrl-A", "Show about dialog");
- menuFile->AppendSeparator();
-#endif
+ wxMenu *fileMenu = new wxMenu;
+
+ // the "About" item should be in the help menu
+ wxMenu *helpMenu = new wxMenu;
+ helpMenu->Append(Minimal_About, _T("&About...\tF1"), _T("Show about dialog"));
+
+ fileMenu->Append(Minimal_Quit, _T("E&xit\tAlt-X"), _T("Quit this program"));