]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/colour.cpp
removed overloaded virtual InitWith() methods, keep just a single InitRGBA()
[wxWidgets.git] / src / mac / carbon / colour.cpp
index 081bc249571eaaaa9343429cbe6b679f929f7614..9d1435aa82a0581129e7576c0365224bd6a365f7 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"
 
@@ -42,17 +44,18 @@ wxColour::~wxColour ()
 {
 }
 
-void wxColour::InitWith (unsigned char r, unsigned char g, unsigned char b)
+void wxColour::InitRGBA (unsigned char r, unsigned char g, unsigned char b, unsigned char a)
 {
     m_red = r;
     m_green = g;
     m_blue = b;
+    m_alpha = a ;
     m_isInit = true;
 
     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 );