]> git.saurik.com Git - wxWidgets.git/commitdiff
fixes #13438 (building OSX min >= 10.6), thanks :-)
authorStefan Csomor <csomor@advancedconcepts.ch>
Tue, 30 Aug 2011 09:02:11 +0000 (09:02 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Tue, 30 Aug 2011 09:02:11 +0000 (09:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68958 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/cocoa/utils.mm

index 7307a6837a4dab508eb8fe081f5868f307892447..ac0909b64db749df1aae6c72f903bd6e3ca0994a 100644 (file)
@@ -305,7 +305,7 @@ wxMouseState wxGetMouseState()
     ms.SetMiddleDown( (buttons & 0x04) != 0 );
     ms.SetRightDown( (buttons & 0x02) != 0 );
     
-    ms.SetRealControlDown(modifiers & NSControlKeyMask);
+    ms.SetRawControlDown(modifiers & NSControlKeyMask);
     ms.SetShiftDown(modifiers & NSShiftKeyMask);
     ms.SetAltDown(modifiers & NSAlternateKeyMask);
     ms.SetControlDown(modifiers & NSCommandKeyMask);