]> git.saurik.com Git - wxWidgets.git/commitdiff
fix comparison of BYTE variable with -1 after last commit
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 6 Jan 2008 00:27:41 +0000 (00:27 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 6 Jan 2008 00:27:41 +0000 (00:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51030 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/window.cpp

index 2e534220387f94f1c2741797e2b4bd8b9ac4e7a4..418d1eb848515a836684e6d7f211918ae65ddb99 100644 (file)
@@ -6101,7 +6101,7 @@ WXWORD wxCharCodeWXToMSW(int wxk, bool *isVirtual)
         default:
             // check to see if its one of the OEM key codes.
             BYTE vks = LOBYTE(VkKeyScan(wxk));
         default:
             // check to see if its one of the OEM key codes.
             BYTE vks = LOBYTE(VkKeyScan(wxk));
-            if ( vks != -1 )
+            if ( vks != 0xff )
             {
                 vk = vks;
             }
             {
                 vk = vks;
             }