From b05206c98b0d11d98d324df1833dacd08f385913 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Thu, 16 Jan 2003 15:24:13 +0000 Subject: [PATCH 1/1] Added About menu git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18776 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/helpfrm.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/html/helpfrm.cpp b/src/html/helpfrm.cpp index 4aaee79da1..347f8d1d12 100644 --- a/src/html/helpfrm.cpp +++ b/src/html/helpfrm.cpp @@ -265,14 +265,14 @@ bool wxHtmlHelpFrame::Create(wxWindow* parent, wxWindowID id, wxMenu* fileMenu = new wxMenu; fileMenu->Append(wxID_HTML_OPENFILE, _("&Open...")); - fileMenu->Append(wxID_ABOUT, _("&About...")); fileMenu->AppendSeparator(); fileMenu->Append(wxID_CLOSE, _("&Close")); -// wxMenu* helpMenu = new wxMenu; -// helpMenu->Append(wxID_ABOUT, _("&About...")); + wxMenu* helpMenu = new wxMenu; + helpMenu->Append(wxID_ABOUT, _("&About...")); menuBar->Append(fileMenu,_("File")); + menuBar->Append(helpMenu,_("Help")); SetMenuBar(menuBar); #endif -- 2.47.2