aboutsummaryrefslogtreecommitdiffstats
path: root/systray_darwin.m
diff options
context:
space:
mode:
Diffstat (limited to 'systray_darwin.m')
-rw-r--r--systray_darwin.m14
1 files changed, 9 insertions, 5 deletions
diff --git a/systray_darwin.m b/systray_darwin.m
index 3d92868..ad8902b 100644
--- a/systray_darwin.m
+++ b/systray_darwin.m
@@ -1,12 +1,16 @@
#import <Cocoa/Cocoa.h>
#include "systray.h"
-#ifndef NSControlStateValueOff
- #define NSControlStateValueOff NSOffState
-#endif
+#if __MAC_OS_X_VERSION_MIN_REQUIRED < __MAC_10_14
+
+ #ifndef NSControlStateValueOff
+ #define NSControlStateValueOff NSOffState
+ #endif
+
+ #ifndef NSControlStateValueOn
+ #define NSControlStateValueOn NSOnState
+ #endif
-#ifndef NSControlStateValueOn
- #define NSControlStateValueOn NSOnState
#endif
@interface MenuItem : NSObject