From: Robin Dunn Date: Mon, 29 Mar 2004 15:52:47 +0000 (+0000) Subject: Use "&Help" so wxMac doesn't make an extra help menu X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c3eeb758b7790948751f547fd5ef803a75b803a4 Use "&Help" so wxMac doesn't make an extra help menu git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26460 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/helpfrm.cpp b/src/html/helpfrm.cpp index 2a2e01fd40..4acfbb9043 100644 --- a/src/html/helpfrm.cpp +++ b/src/html/helpfrm.cpp @@ -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