]> git.saurik.com Git - wxWidgets.git/commitdiff
translate VK_OEM_PLUS to '=', not '+', because this is what the unmodified key is
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 11 Dec 2004 20:01:05 +0000 (20:01 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 11 Dec 2004 20:01:05 +0000 (20:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/window.cpp

index 864a390d85bc20e351397752c1431633b3201306..88dfe6c276b9d3b6e573115e6d874c168d1a1c29 100644 (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;