@@ -727,6 +727,8 @@ NSViewComponentPeer::NSViewComponentPeer (Component* const component, | |||||
[window setExcludedFromWindowsMenu: (windowStyleFlags & windowIsTemporary) != 0]; | [window setExcludedFromWindowsMenu: (windowStyleFlags & windowIsTemporary) != 0]; | ||||
[window setIgnoresMouseEvents: (windowStyleFlags & windowIgnoresMouseClicks) != 0]; | [window setIgnoresMouseEvents: (windowStyleFlags & windowIgnoresMouseClicks) != 0]; | ||||
} | } | ||||
setTitle (component->getName()); | |||||
} | } | ||||
NSViewComponentPeer::~NSViewComponentPeer() | NSViewComponentPeer::~NSViewComponentPeer() | ||||
@@ -265252,6 +265252,8 @@ NSViewComponentPeer::NSViewComponentPeer (Component* const component, | |||||
[window setExcludedFromWindowsMenu: (windowStyleFlags & windowIsTemporary) != 0]; | [window setExcludedFromWindowsMenu: (windowStyleFlags & windowIsTemporary) != 0]; | ||||
[window setIgnoresMouseEvents: (windowStyleFlags & windowIgnoresMouseClicks) != 0]; | [window setIgnoresMouseEvents: (windowStyleFlags & windowIgnoresMouseClicks) != 0]; | ||||
} | } | ||||
setTitle (component->getName()); | |||||
} | } | ||||
NSViewComponentPeer::~NSViewComponentPeer() | NSViewComponentPeer::~NSViewComponentPeer() | ||||
@@ -363,11 +363,11 @@ | |||||
#define MACOS_10_2_OR_EARLIER 1 | #define MACOS_10_2_OR_EARLIER 1 | ||||
#endif | #endif | ||||
#if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_4) | |||||
#if (! defined (MAC_OS_X_VERSION_10_4)) || (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_4) | |||||
#define MACOS_10_3_OR_EARLIER 1 | #define MACOS_10_3_OR_EARLIER 1 | ||||
#endif | #endif | ||||
#if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5) | |||||
#if (! defined (MAC_OS_X_VERSION_10_5)) || (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5) | |||||
#define MACOS_10_4_OR_EARLIER 1 | #define MACOS_10_4_OR_EARLIER 1 | ||||
#endif | #endif | ||||
#endif | #endif | ||||
@@ -113,11 +113,11 @@ | |||||
#define MACOS_10_2_OR_EARLIER 1 | #define MACOS_10_2_OR_EARLIER 1 | ||||
#endif | #endif | ||||
#if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_4) | |||||
#if (! defined (MAC_OS_X_VERSION_10_4)) || (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_4) | |||||
#define MACOS_10_3_OR_EARLIER 1 | #define MACOS_10_3_OR_EARLIER 1 | ||||
#endif | #endif | ||||
#if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5) | |||||
#if (! defined (MAC_OS_X_VERSION_10_5)) || (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5) | |||||
#define MACOS_10_4_OR_EARLIER 1 | #define MACOS_10_4_OR_EARLIER 1 | ||||
#endif | #endif | ||||
#endif | #endif | ||||