From: Julian Smart Date: Wed, 16 May 2001 11:54:18 +0000 (+0000) Subject: Applied patch #403856 (utilscmn.cpp should translate special key names) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/19b726bbca63289d69d013e65d6b26e8b641718d Applied patch #403856 (utilscmn.cpp should translate special key names) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10174 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/utilscmn.cpp b/src/common/utilscmn.cpp index f563515d18..6020b8780d 100644 --- a/src/common/utilscmn.cpp +++ b/src/common/utilscmn.cpp @@ -504,23 +504,23 @@ wxAcceleratorEntry *wxGetAccelFromString(const wxString& label) else { // several special cases current.MakeUpper(); - if ( current == wxT("DEL") ) { + if ( current == _("DEL") ) { keyCode = WXK_DELETE; } - else if ( current == wxT("DELETE") ) { + else if ( current == _("DELETE") ) { keyCode = WXK_DELETE; } - else if ( current == wxT("INS") ) { + else if ( current == _("INS") ) { keyCode = WXK_INSERT; } - else if ( current == wxT("INSERT") ) { + else if ( current == _("INSERT") ) { keyCode = WXK_INSERT; } #if 0 - else if ( current == wxT("PGUP") ) { + else if ( current == _("PGUP") ) { keyCode = VK_PRIOR; } - else if ( current == wxT("PGDN") ) { + else if ( current == _("PGDN") ) { keyCode = VK_NEXT; } #endif