X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/aea95b1c3a8ae221cc3aade5ce49a3cf848fd56a..9f7e7edb78aa19d6aed53b113aa953c24d6335b1:/src/gtk1/colour.cpp diff --git a/src/gtk1/colour.cpp b/src/gtk1/colour.cpp index 82712095cd..60d6b17e66 100644 --- a/src/gtk1/colour.cpp +++ b/src/gtk1/colour.cpp @@ -26,7 +26,7 @@ // wxColour //----------------------------------------------------------------------------- -class wxColourRefData: public wxObjectRefData +class wxColourRefData : public wxGDIRefData { public: wxColourRefData() @@ -40,7 +40,6 @@ public: } wxColourRefData(const wxColourRefData& data) - : wxObjectRefData() { m_color = data.m_color; m_colormap = data.m_colormap; @@ -159,12 +158,12 @@ bool wxColour::operator == ( const wxColour& col ) const own->green == other->green; } -wxObjectRefData *wxColour::CreateRefData() const +wxGDIRefData *wxColour::CreateGDIRefData() const { return new wxColourRefData; } -wxObjectRefData *wxColour::CloneRefData(const wxObjectRefData *data) const +wxGDIRefData *wxColour::CloneGDIRefData(const wxGDIRefData *data) const { return new wxColourRefData(*(wxColourRefData *)data); } @@ -225,10 +224,10 @@ GdkColor *wxColour::GetColor() const return &M_COLDATA->m_color; } -bool wxColour::FromString(const wxChar *str) +bool wxColour::FromString(const wxString& str) { GdkColor colGDK; - if ( gdk_color_parse( str, &colGDK ) ) + if ( gdk_color_parse( wxGTK_CONV(str), &colGDK ) ) { UnRef();