]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/colour.cpp
fixing two warnings
[wxWidgets.git] / src / generic / colour.cpp
index e51a7e3938bd4faebf06aaee5bf97cdb9221b0e0..d4c9ed20135cc45ec5e08cfb48a38a0868d76a7c 100644 (file)
@@ -22,8 +22,6 @@
     #include "wx/gdicmn.h"
 #endif
 
-IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject)
-
 // Colour
 
 void wxColour::Init()
@@ -35,14 +33,16 @@ void wxColour::Init()
     m_isInit = false;
 }
 
-wxColour::wxColour()
-{
-    Init();
-}
-
-wxColour::wxColour(const wxColour& col)
+void wxColour::InitRGBA(unsigned char r,
+                        unsigned char g,
+                        unsigned char b,
+                        unsigned char a)
 {
-    *this = col;
+    m_red = r;
+    m_green = g;
+    m_blue = b;
+    m_alpha = a;
+    m_isInit = true;
 }
 
 wxColour& wxColour::operator=(const wxColour& col)
@@ -55,16 +55,3 @@ wxColour& wxColour::operator=(const wxColour& col)
     return *this;
 }
 
-wxColour::~wxColour()
-{
-}
-
-void wxColour::InitWith(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;
-}