mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-28 02:30:05 +00:00
macOS Accessibility: Fixed an incorrect deployment target check
This commit is contained in:
parent
e867d1dbb4
commit
09c06fb946
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ namespace juce
|
|||
using NSAccessibilityNotificationName = NSString*;
|
||||
#endif
|
||||
|
||||
#if (! defined MAC_OS_X_VERSION_10_9) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_9
|
||||
#if (! defined MAC_OS_X_VERSION_10_9) || MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_9
|
||||
const NSAccessibilityNotificationName NSAccessibilityLayoutChangedNotificationJuce = @"AXLayoutChanged";
|
||||
#else
|
||||
const NSAccessibilityNotificationName NSAccessibilityLayoutChangedNotificationJuce = NSAccessibilityLayoutChangedNotification;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue