From 7eeab1bb7e7304def1931c4f5754ddaf22294bae Mon Sep 17 00:00:00 2001 From: Lauri Nurmi Date: Sat, 20 Feb 2021 23:35:17 +0200 Subject: [PATCH] Change capitalization of stock label "&CD-Rom" to "&CD-ROM" Use standard upper case instead of strange mixed one. Closes https://github.com/wxWidgets/wxWidgets/pull/2241 --- docs/doxygen/mainpages/const_stockitems.h | 2 +- src/common/stockitem.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/doxygen/mainpages/const_stockitems.h b/docs/doxygen/mainpages/const_stockitems.h index 0733eb03de..f670da14c7 100644 --- a/docs/doxygen/mainpages/const_stockitems.h +++ b/docs/doxygen/mainpages/const_stockitems.h @@ -27,7 +27,7 @@ Also note that you can retrieve stock bitmaps using wxArtProvider. @stock{wxID_BOLD,bold,&Bold} @stock{wxID_BOTTOM,goto-bottom,&Bottom} @stock{wxID_CANCEL,cancel,&Cancel} -@stock{wxID_CDROM,cdrom,&CD-Rom} +@stock{wxID_CDROM,cdrom,&CD-ROM} @stock{wxID_CLEAR,clear,&Clear} @stock{wxID_CLOSE,close,&Close} @stock{wxID_CONVERT,convert,&Convert} diff --git a/src/common/stockitem.cpp b/src/common/stockitem.cpp index 4898588437..44c68ccd0a 100644 --- a/src/common/stockitem.cpp +++ b/src/common/stockitem.cpp @@ -149,7 +149,7 @@ wxString wxGetStockLabel(wxWindowID id, long flags) STOCKITEM(wxID_BOLD, _("&Bold"), _("Bold")); STOCKITEM(wxID_BOTTOM, _("&Bottom"), _("Bottom")); STOCKITEM(wxID_CANCEL, _("&Cancel"), _("Cancel")); - STOCKITEM(wxID_CDROM, _("&CD-Rom"), _("CD-Rom")); + STOCKITEM(wxID_CDROM, _("&CD-ROM"), _("CD-ROM")); STOCKITEM(wxID_CLEAR, _("&Clear"), _("Clear")); STOCKITEM(wxID_CLOSE, _("&Close"), _("Close")); STOCKITEM(wxID_CONVERT, _("&Convert"), _("Convert"));