]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/core/colour.cpp
adding backtab to exception list
[wxWidgets.git] / src / osx / core / colour.cpp
index e52d5b7aabf133951e038ab56bf82e362a15584d..35114175ceee1b93366d43d71a320b189d8a6999 100644 (file)
@@ -72,7 +72,7 @@ void wxColour::InitRGBA (ChannelType r, ChannelType g, ChannelType b, ChannelTyp
     m_alpha = a ;
 
     CGColorRef col = 0 ;
     m_alpha = a ;
 
     CGColorRef col = 0 ;
-#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
+#if wxOSX_USE_COCOA_OR_CARBON && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
     if ( CGColorCreateGenericRGB != NULL )
         col = CGColorCreateGenericRGB( (CGFloat)(r / 255.0), (CGFloat) (g / 255.0), (CGFloat) (b / 255.0), (CGFloat) (a / 255.0) );
     else
     if ( CGColorCreateGenericRGB != NULL )
         col = CGColorCreateGenericRGB( (CGFloat)(r / 255.0), (CGFloat) (g / 255.0), (CGFloat) (b / 255.0), (CGFloat) (a / 255.0) );
     else
@@ -111,7 +111,7 @@ void wxColour::InitCGColorRef( CGColorRef col )
 {
     m_cgColour.reset( col );
     size_t noComp = CGColorGetNumberOfComponents( col );
 {
     m_cgColour.reset( col );
     size_t noComp = CGColorGetNumberOfComponents( col );
-    
+
     const CGFloat *components = NULL;
     if ( noComp >= 1 && noComp <= 4 )
     {
     const CGFloat *components = NULL;
     if ( noComp >= 1 && noComp <= 4 )
     {
@@ -130,7 +130,7 @@ void wxColour::InitFromComponents(const CGFloat* components, size_t numComponent
         m_red = m_green = m_blue = 0;
         return;
     }
         m_red = m_green = m_blue = 0;
         return;
     }
-    
+
     if ( numComponents >= 3 )
     {
         m_red = (int)(components[0]*255+0.5);
     if ( numComponents >= 3 )
     {
         m_red = (int)(components[0]*255+0.5);