]> git.saurik.com Git - wxWidgets.git/commitdiff
Added About menu
authorJulian Smart <julian@anthemion.co.uk>
Thu, 16 Jan 2003 15:24:13 +0000 (15:24 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 16 Jan 2003 15:24:13 +0000 (15:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18776 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/helpfrm.cpp

index 4aaee79da1a63dc5f41546ee3c43e8093cee40a4..347f8d1d12649c6474987aef8fa38735dc0be4d6 100644 (file)
@@ -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