]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/colour.cpp
Added automatic dialog scrolling ability
[wxWidgets.git] / src / mac / carbon / colour.cpp
index b2a7f5884e12fe4ee6461b0477a51d013aaa74aa..4d91726650dd40ab9e8a7005eece2e38710899b7 100644 (file)
@@ -26,15 +26,6 @@ wxColour::wxColour(const RGBColor& col)
     InitRGBColor(col);
 }
 
-wxColour::wxColour( const wxColour& col )
-{
-    m_red = col.m_red;
-    m_green = col.m_green;
-    m_blue = col.m_blue;
-    m_alpha = col.m_alpha;
-    m_cgColour = col.m_cgColour;
-}
-
 wxColour::wxColour(CGColorRef col)
 {
     InitCGColorRef(col);
@@ -47,10 +38,6 @@ void wxColour::GetRGBColor( RGBColor *col ) const
     col->green = (m_green << 8) + m_green;
 }
 
-wxColour::~wxColour ()
-{
-}
-
 wxColour& wxColour::operator=(const RGBColor& col)
 {
     InitRGBColor(col);