]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/colour.cpp
Fix for wxMemoryDC::GetAsBitmap() not working on Windows.
[wxWidgets.git] / src / msw / colour.cpp
index ad1c5221f9bb3964e746a4a4e13d7de3b825ec40..acd528ef631d73a5247c9deaf8776e7b6e24ce7e 100644 (file)
@@ -68,6 +68,7 @@ void wxColour::Init()
 {
     m_isInit = false;
     m_pixel = 0;
+    m_alpha =
     m_red =
     m_blue =
     m_green = 0;
@@ -77,11 +78,13 @@ 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;
     m_pixel = PALETTERGB(m_red, m_green, m_blue);
 }