]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/colour.cpp
Further refine of #15226: wxRichTextCtrl: Implement setting properties with undo...
[wxWidgets.git] / src / generic / colour.cpp
index 6cda3d1e84adf32793bfea27cf4ea9b77c2e5cd0..f16c134514e9f9804ced203b38451256a1b9a542 100644 (file)
@@ -4,7 +4,6 @@
 // Author:      Julian Smart
 // Modified by:
 // Created:     01/02/97
-// RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -22,8 +21,6 @@
     #include "wx/gdicmn.h"
 #endif
 
-IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject)
-
 // Colour
 
 void wxColour::Init()
@@ -35,14 +32,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,18 +54,3 @@ wxColour& wxColour::operator=(const wxColour& col)
     return *this;
 }
 
-wxColour::~wxColour()
-{
-}
-
-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;
-}