From 655f9c7c4e9f47b50f9c5154aa72fa294c2b01bd Mon Sep 17 00:00:00 2001 From: David Howland Date: Thu, 15 Mar 2018 17:46:57 -0400 Subject: [PATCH] Fix wxID_SAVEAS label to meet design guidelines This bug was introduced way back in Aug 2011 by 73d1308b85df21aa1d69b74a37c4f88c53fe661f This fixes the code to match the exsiting documentation in docs/doxygen/mainpages/const_stockitems.h --- src/common/stockitem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/stockitem.cpp b/src/common/stockitem.cpp index 900a77eb84..763a403d87 100644 --- a/src/common/stockitem.cpp +++ b/src/common/stockitem.cpp @@ -188,7 +188,7 @@ wxString wxGetStockLabel(wxWindowID id, long flags) STOCKITEM(wxID_REPLACE, _("Rep&lace"), _("Replace")); STOCKITEM(wxID_REVERT_TO_SAVED, _("Revert to Saved"), _("Revert to Saved")); STOCKITEM(wxID_SAVE, _("&Save"), _("Save")); - STOCKITEM(wxID_SAVEAS, _("&Save as"), _("Save as")); + STOCKITEM(wxID_SAVEAS, _("Save &as..."), _("Save as...")); STOCKITEM(wxID_SELECTALL, _("Select &All"), _("Select All")); STOCKITEM(wxID_SELECT_COLOR, _("&Color"), _("Color")); STOCKITEM(wxID_SELECT_FONT, _("&Font"), _("Font"));