]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/colour.cpp
updates from Adrián González Alba
[wxWidgets.git] / src / mac / carbon / colour.cpp
index 081bc249571eaaaa9343429cbe6b679f929f7614..9d656b02614cea2b4d92bca6d84baac109af3403 100644 (file)
@@ -13,7 +13,9 @@
 
 #include "wx/colour.h"
 
-#include "wx/gdicmn.h"
+#ifndef WX_PRECOMP
+    #include "wx/gdicmn.h"
+#endif
 
 #include "wx/mac/private.h"
 
@@ -52,7 +54,7 @@ void wxColour::InitWith (unsigned char r, unsigned char g, unsigned char b)
     wxComposeRGBColor( &m_pixel , m_red , m_blue , m_green );
 }
 
-void wxColour::Set( const WXCOLORREF* color )
+void wxColour::FromRGBColor( const WXCOLORREF* color )
 {
     RGBColor* col = (RGBColor*) color;
     memcpy( &m_pixel, color, 6 );