From: Václav Slavík Date: Mon, 19 May 2003 16:45:47 +0000 (+0000) Subject: allow untranslated accelerators, too X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/876262caf1dd81b0e3d9a0c81c10879f6fb256e8?ds=inline allow untranslated accelerators, too git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20665 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/menucmn.cpp b/src/common/menucmn.cpp index ad77746cc9..e6368d779a 100644 --- a/src/common/menucmn.cpp +++ b/src/common/menucmn.cpp @@ -94,11 +94,11 @@ wxAcceleratorEntry *wxGetAccelFromString(const wxString& label) wxString current; for ( size_t n = (size_t)posTab + 1; n < label.Len(); n++ ) { if ( (label[n] == '+') || (label[n] == '-') ) { - if ( current == _("ctrl") ) + if ( current == _("ctrl") || current == _T("ctrl") ) accelFlags |= wxACCEL_CTRL; - else if ( current == _("alt") ) + else if ( current == _("alt") || current == _T("alt") ) accelFlags |= wxACCEL_ALT; - else if ( current == _("shift") ) + else if ( current == _("shift") || current == _T("shift") ) accelFlags |= wxACCEL_SHIFT; else { // we may have "Ctrl-+", for example, but we still want to