]> git.saurik.com Git - wxWidgets.git/commitdiff
fixing type for 64 bit, closes #11550
authorStefan Csomor <csomor@advancedconcepts.ch>
Mon, 18 Jan 2010 10:09:47 +0000 (10:09 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Mon, 18 Jan 2010 10:09:47 +0000 (10:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63180 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/core/hid.cpp

index 87098dfd721c2de1fa8b0570804893fc09afc94b..3bc287cb1738a2b15707e45eb44a202e718b3ae4 100644 (file)
@@ -478,8 +478,8 @@ void wxHIDKeyboard::BuildCookies(CFArrayRef Array)
 void wxHIDKeyboard::DoBuildCookies(CFArrayRef Array)
 {
     //Now go through each possible cookie
-    int i,
-        nUsage;
+    int i;
+    long nUsage;
 //    bool bEOTriggered = false;
     for (i = 0; i < CFArrayGetCount(Array); ++i)
     {