]> git.saurik.com Git - wxWidgets.git/commitdiff
Use "&Help" so wxMac doesn't make an extra help menu
authorRobin Dunn <robin@alldunn.com>
Mon, 29 Mar 2004 15:52:47 +0000 (15:52 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 29 Mar 2004 15:52:47 +0000 (15:52 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26460 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/helpfrm.cpp

index 2a2e01fd40d310abf660353a3d18098c7b1ac634..4acfbb904378936457529522e454cdf8942f1519 100644 (file)
@@ -273,8 +273,8 @@ bool wxHtmlHelpFrame::Create(wxWindow* parent, wxWindowID id,
     wxMenu* helpMenu = new wxMenu;
     helpMenu->Append(wxID_ABOUT, _("&About..."));
 
-    menuBar->Append(fileMenu,_("File"));
-    menuBar->Append(helpMenu,_("Help"));
+    menuBar->Append(fileMenu,_("&File"));
+    menuBar->Append(helpMenu,_("&Help"));
     SetMenuBar(menuBar);
 #endif