]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/colour.cpp
another custom draw fix: leave space for the image even if the current item doesn...
[wxWidgets.git] / src / msw / colour.cpp
index 5ef30bb4d0330e69296085fad842731dbdfa3c3a..af6adf93bea471e1fcb1e9e45bf5a60b4e40ae6b 100644 (file)
@@ -80,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 )