1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-14 00:14:18 +00:00

macOS: Fixed some issues with 32-bit builds

This commit is contained in:
ed 2020-04-09 14:22:40 +01:00
parent b6a6a7ea26
commit 920f86eace

View file

@ -1535,11 +1535,15 @@ private:
case NSEventTypeRotate:
case NSEventTypeBeginGesture:
case NSEventTypeEndGesture:
case NSEventTypeSmartMagnify:
case NSEventTypeQuickLook:
#if JUCE_64BIT
case NSEventTypeSmartMagnify:
case NSEventTypePressure:
#endif
#if defined (MAC_OS_X_VERSION_10_12) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_12
#if JUCE_64BIT
case NSEventTypeDirectTouch:
#endif
#if defined (MAC_OS_X_VERSION_10_15) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_15
case NSEventTypeChangeMode:
#endif