git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59094
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
return true;
#if wxOSX_USE_COCOA_OR_CARBON
-#if 1 // MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5
if ( UMAGetSystemVersion() < 0x1060 )
{
CGCompositeOperation cop = kCGCompositeOperationSourceOver;
else
CGContextSetBlendMode(m_cgContext, mode);
}
- else
-#endif
#endif
+#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_5
+ else
{
CGBlendMode mode = kCGBlendModeNormal;
switch( op )
}
CGContextSetBlendMode(m_cgContext, mode);
}
+#endif
return true;
}