]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/cocoa/utils.mm
Applied Blit system options optimization to StretchBlit
[wxWidgets.git] / src / osx / cocoa / utils.mm
index 9f57601f8487afe7772829274d1ca7e9b089def4..ac0909b64db749df1aae6c72f903bd6e3ca0994a 100644 (file)
@@ -54,8 +54,8 @@ void wxBell()
 - (void)applicationWillFinishLaunching:(NSNotification *)application { 
     wxUnusedVar(application);
     
-    // we must install our handlers later than setting the app delegates, because otherwise our handlers
-    // get overwritten
+    // we must install our handlers later than setting the app delegate, because otherwise our handlers
+    // get overwritten in the meantime
 
     NSAppleEventManager *appleEventManager = [NSAppleEventManager sharedAppleEventManager];
     
@@ -305,10 +305,10 @@ wxMouseState wxGetMouseState()
     ms.SetMiddleDown( (buttons & 0x04) != 0 );
     ms.SetRightDown( (buttons & 0x02) != 0 );
     
-    ms.SetControlDown(modifiers & NSControlKeyMask);
+    ms.SetRawControlDown(modifiers & NSControlKeyMask);
     ms.SetShiftDown(modifiers & NSShiftKeyMask);
     ms.SetAltDown(modifiers & NSAlternateKeyMask);
-    ms.SetMetaDown(modifiers & NSCommandKeyMask);
+    ms.SetControlDown(modifiers & NSCommandKeyMask);
     
     return ms;
 }