translate VK_OEM_PLUS to '=', not '+', because this is what the unmodified key is

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2004-12-11 20:01:05 +00:00
parent ababa106ae
commit 88379f1f2e

View File

@ -4955,7 +4955,7 @@ int wxCharCodeMSWToWX(int keySym, WXLPARAM lParam)
case VK_SCROLL: id = WXK_SCROLL; break;
case VK_OEM_1: id = ';'; break;
case VK_OEM_PLUS: id = '+'; break;
case VK_OEM_PLUS: id = '='; break;
case VK_OEM_COMMA: id = ','; break;
case VK_OEM_MINUS: id = '-'; break;
case VK_OEM_PERIOD: id = '.'; break;