]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/colour.cpp
make sure we always restore the passed in cg in a paint event
[wxWidgets.git] / src / mac / carbon / colour.cpp
index e9237fdbc60f87225005e5a023fb49c2d1b206f0..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,11 +44,12 @@ 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 );