From c841e78083d3ef201c7b461ddda10c5956a38f6a Mon Sep 17 00:00:00 2001 From: David Howland Date: Fri, 16 Mar 2018 10:52:28 -0400 Subject: [PATCH] Fill out help strings for menu items --- src/common/stockitem.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/stockitem.cpp b/src/common/stockitem.cpp index 0498cf3c36..399e998342 100644 --- a/src/common/stockitem.cpp +++ b/src/common/stockitem.cpp @@ -264,6 +264,8 @@ wxString wxGetStockHelpString(wxWindowID id, wxStockHelpStringClient client) STOCKITEM(wxID_EXIT, wxSTOCK_MENU, _("Quit this program")) STOCKITEM(wxID_REDO, wxSTOCK_MENU, _("Redo last action")) STOCKITEM(wxID_UNDO, wxSTOCK_MENU, _("Undo last action")) + STOCKITEM(wxID_NEW, wxSTOCK_MENU, _("Create new document")) + STOCKITEM(wxID_OPEN, wxSTOCK_MENU, _("Open an existing document")) STOCKITEM(wxID_CLOSE, wxSTOCK_MENU, _("Close current document")) STOCKITEM(wxID_SAVE, wxSTOCK_MENU, _("Save current document")) STOCKITEM(wxID_SAVEAS, wxSTOCK_MENU, _("Save current document with a different filename"))