X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d3c7fc996a73e9f6a83067bc28a3c5581a3fee65..f8b1df0b15f843b8f47efb9bee38f1de0fa95020:/include/wx/generic/colour.h?ds=inline diff --git a/include/wx/generic/colour.h b/include/wx/generic/colour.h index 66aa3800d4..ca1ebf05b9 100644 --- a/include/wx/generic/colour.h +++ b/include/wx/generic/colour.h @@ -20,20 +20,18 @@ class WXDLLEXPORT wxColour: public wxColourBase public: // constructors // ------------ - - // default - wxColour(); DEFINE_STD_WXCOLOUR_CONSTRUCTORS // copy ctors and assignment operators - wxColour(const wxColour& col); - wxColour& operator=(const wxColour& col); + wxColour(const wxColour& col) + { + *this = col; + } - // dtor - virtual ~wxColour(); + wxColour& operator=(const wxColour& col); // accessors - bool Ok() const { return m_isInit; } + virtual bool IsOk() const { return m_isInit; } unsigned char Red() const { return m_red; } unsigned char Green() const { return m_green; } @@ -57,12 +55,8 @@ protected: // Helper function void Init(); - virtual void InitWith(unsigned char red, unsigned char green, unsigned char blue) - { - InitWith(red, green, blue, wxALPHA_OPAQUE); - } - - virtual void InitWith(unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha); + virtual void + InitRGBA(unsigned char r, unsigned char g, unsigned char b, unsigned char a); private: bool m_isInit;