X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/aea95b1c3a8ae221cc3aade5ce49a3cf848fd56a..9c805dec6caf3c98a3797898cffe795b5b56e606:/src/generic/colour.cpp?ds=sidebyside diff --git a/src/generic/colour.cpp b/src/generic/colour.cpp index 6cda3d1e84..d4c9ed2013 100644 --- a/src/generic/colour.cpp +++ b/src/generic/colour.cpp @@ -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,18 +55,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; -}