From 876262caf1dd81b0e3d9a0c81c10879f6fb256e8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Mon, 19 May 2003 16:45:47 +0000 Subject: [PATCH] allow untranslated accelerators, too git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20665 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/menucmn.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.45.2