diff options
| author | Tomáš Znamenáček | 2016-10-28 14:59:31 +0200 | 
|---|---|---|
| committer | Tomáš Znamenáček | 2016-10-28 14:59:31 +0200 | 
| commit | 7dfde95369e63ce0cb45b3f30306a3d7ddb014fa (patch) | |
| tree | 80d67c868c0977f6a5ed969e2df355808e5404c2 | |
| parent | 0d54ede8699d90997022d2286ef65953b7761628 (diff) | |
| download | MASShortcut-7dfde95369e63ce0cb45b3f30306a3d7ddb014fa.tar.bz2 | |
Key mask conditional compilation fix #2
| -rw-r--r-- | Framework/MASKeyMasks.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Framework/MASKeyMasks.h b/Framework/MASKeyMasks.h index e541c32..6f874c9 100644 --- a/Framework/MASKeyMasks.h +++ b/Framework/MASKeyMasks.h @@ -10,7 +10,7 @@  //  // It should be safe to remove this whole thing once the 10.12 SDK is ubiquitous. -#if __MAC_OS_X_VERSION_MAX_ALLOWED < 1012 +#if __MAC_OS_X_VERSION_MAX_ALLOWED < __MAC_10_12  #define NSEventModifierFlagCommand  NSCommandKeyMask  #define NSEventModifierFlagControl  NSControlKeyMask  #define NSEventModifierFlagOption   NSAlternateKeyMask | 
