Fix building with OS X < 10.9
wxNotificationMessage changes in bf5e403
included a 10.9+ property runtime
check but was missing a compile guard.
Closes https://github.com/wxWidgets/wxWidgets/pull/220
This commit is contained in:
committed by
Vadim Zeitlin
parent
becb7864f7
commit
9bcfdc65aa
@@ -119,9 +119,11 @@ public:
|
|||||||
|
|
||||||
virtual void SetIcon(const wxIcon& icon) wxOVERRIDE
|
virtual void SetIcon(const wxIcon& icon) wxOVERRIDE
|
||||||
{
|
{
|
||||||
|
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_9
|
||||||
// Additional icon in the notification is only supported on OS X 10.9+
|
// Additional icon in the notification is only supported on OS X 10.9+
|
||||||
if ([NSUserNotification instancesRespondToSelector:@selector(setContentImage:)])
|
if ([NSUserNotification instancesRespondToSelector:@selector(setContentImage:)])
|
||||||
m_notif.contentImage = icon.GetNSImage();
|
m_notif.contentImage = icon.GetNSImage();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual bool AddAction(wxWindowID actionid, const wxString &label)
|
virtual bool AddAction(wxWindowID actionid, const wxString &label)
|
||||||
|
Reference in New Issue
Block a user