]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/colour.cpp
wxGTK1 : wx/private/eventloopsourcesmanager.h was missing in evtloop.cpp
[wxWidgets.git] / src / os2 / colour.cpp
index 93ae465dc26c105ef04d5cae838e26daa64779f1..287e2c4181559c6bc36a6868bead2107218d5d69 100644 (file)
@@ -4,7 +4,6 @@
 // Author:      David Webster
 // Modified by:
 // Created:     10/13/99
-// RCS-ID:      $Id$
 // Copyright:   (c) David Webster
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 #include "wx/colour.h"
 
 #ifndef WX_PRECOMP
+    #include "wx/gdicmn.h"
 #endif
 
-#include "wx/gdicmn.h"
 #define INCL_GPI
 #define INCL_PM
 #include<os2.h>
 
-IMPLEMENT_DYNAMIC_CLASS(wxColour, wxGDIObject)
-
 // Colour
 
 void wxColour::Init()
@@ -33,11 +30,6 @@ void wxColour::Init()
     m_cRed = m_cBlue = m_cGreen = 0;
 } // end of wxColour::Init
 
-wxColour::wxColour ()
-{
-    Init();
-} // end of wxColour::wxColour
-
 wxColour::wxColour( const wxColour& rCol )
 {
     *this = rCol;
@@ -57,9 +49,10 @@ wxColour::~wxColour()
 {
 } // end of wxColour::~wxColour
 
-void wxColour::InitWith( unsigned char cRed,
+void wxColour::InitRGBA( unsigned char cRed,
                          unsigned char cGreen,
-                         unsigned char cBlue )
+                         unsigned char cBlue,
+                         unsigned char WXUNUSED(calpha) )
 {
     m_cRed    = cRed;
     m_cGreen  = cGreen;