X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4b80b7705f134b190c96e1df947750241417d948..8a7e4b38b8fa4d31b805a0cf1779a9b95142f05b:/include/wx/gtk1/colour.h diff --git a/include/wx/gtk1/colour.h b/include/wx/gtk1/colour.h index c09dfe5ef1..c5006cf4fb 100644 --- a/include/wx/gtk1/colour.h +++ b/include/wx/gtk1/colour.h @@ -41,11 +41,12 @@ public: wxColour() { } DEFINE_STD_WXCOLOUR_CONSTRUCTORS - ~wxColour(); + virtual ~wxColour(); virtual bool FromString(const wxChar *str); - bool Ok() const { return m_refData != NULL; } + bool Ok() const { return IsOk(); } + bool IsOk() const { return m_refData != NULL; } bool operator == ( const wxColour& col ) const; bool operator != ( const wxColour& col ) const { return !(*this == col); } @@ -65,7 +66,8 @@ protected: virtual wxObjectRefData *CreateRefData() const; virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; - virtual void InitWith( unsigned char red, unsigned char green, unsigned char blue ); + virtual void + InitRGBA(unsigned char r, unsigned char g, unsigned char b, unsigned char a); private: DECLARE_DYNAMIC_CLASS(wxColour)