From: Vadim Zeitlin Date: Sat, 11 Dec 2004 20:01:05 +0000 (+0000) Subject: translate VK_OEM_PLUS to '=', not '+', because this is what the unmodified key is X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/88379f1f2ecb3221dacb9c0dc544059d158d1b74 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 --- diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 864a390d85..88dfe6c276 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -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;