]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/colour.cpp
1. added abstract interface to wxHtmlWindow for use by wxHtmlWinParser and implemente...
[wxWidgets.git] / src / msw / colour.cpp
index d537b88849eb2dc1ec12de0e3147c9353b307331..af6adf93bea471e1fcb1e9e45bf5a60b4e40ae6b 100644 (file)
@@ -18,6 +18,7 @@
 
 #include "wx/gdicmn.h"
 #include "wx/msw/private.h"
+#include "wx/colour.h"
 
 #include <string.h>
 
@@ -79,22 +80,6 @@ void wxColour::Init()
     m_green = 0;
 }
 
-wxColour::wxColour(const wxColour& col)
-         :wxObject()
-{
-    *this = col;
-}
-
-wxColour& wxColour::operator=(const wxColour& col)
-{
-    m_red = col.m_red;
-    m_green = col.m_green;
-    m_blue = col.m_blue;
-    m_isInit = col.m_isInit;
-    m_pixel = col.m_pixel;
-    return *this;
-}
-
 void wxColour::InitFromName(const wxString& name)
 {
     if ( wxTheColourDatabase )