1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

macOS: Fixed a build error when building against SDKs < 10.13 for deployment targets < 10.10

This commit is contained in:
ed 2021-05-27 17:55:56 +01:00
parent e28525b05d
commit 1634d9f428

View file

@ -26,13 +26,13 @@
namespace juce
{
#if (defined (MAC_OS_X_VERSION_10_10) && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_10)
#if (! defined MAC_OS_X_VERSION_10_13) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_13
using NSAccessibilityRole = NSString*;
using NSAccessibilityNotificationName = NSString*;
#endif
#if (defined (MAC_OS_X_VERSION_10_10) && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_10)
//==============================================================================
class AccessibilityHandler::AccessibilityNativeImpl
{