X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b0a6bb75bcd4b5a4873d766a9208ac6376fe8625..081eb1b120c1bc9147582cff84de756b4a3a63af:/src/common/utilscmn.cpp diff --git a/src/common/utilscmn.cpp b/src/common/utilscmn.cpp index 77de515356..6020b8780d 100644 --- a/src/common/utilscmn.cpp +++ b/src/common/utilscmn.cpp @@ -329,7 +329,7 @@ int wxHexToDec(const wxString& buf) else secondDigit = buf.GetChar(1) - wxT('0'); - return firstDigit * 16 + secondDigit; + return (firstDigit & 0xF) * 16 + (secondDigit & 0xF ); } // Convert decimal integer to 2-character hex string @@ -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