X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4b1f6faaa2c062d0797ae85c66ebe2c927946992..5c737c4c37eb7d0687e06e005678299fe8557bc4:/src/common/utilscmn.cpp 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