X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/de6185e212ebc37ff11ff70278e3c4f68419b097..a766986f6d443ba1d50e3af25f3306fa56e4518e:/src/x11/palette.cpp?ds=sidebyside diff --git a/src/x11/palette.cpp b/src/x11/palette.cpp index e2d9504f4b..79f2767556 100644 --- a/src/x11/palette.cpp +++ b/src/x11/palette.cpp @@ -42,10 +42,9 @@ not the functionality that wxPalette::Create() aims to provide. #ifndef WX_PRECOMP #include "wx/app.h" #include "wx/utils.h" + #include "wx/window.h" #endif -#include "wx/window.h" - #ifdef __VMS__ #pragma message disable nosimpint #endif @@ -171,7 +170,19 @@ bool wxPalette::Create(int n, const unsigned char *red, const unsigned char *gre return true; } -int wxPalette::GetPixel(unsigned char red, unsigned char green, unsigned char blue) const +wxGDIRefData *wxPalette::CreateGDIRefData() const +{ + return new wxPaletteRefData; +} + +wxGDIRefData *wxPalette::CloneGDIRefData(const wxGDIRefData *data) const +{ + return new wxPaletteRefData(*wx_static_cast(const wxPaletteRefData *, data)); +} + +int wxPalette::GetPixel(unsigned char WXUNUSED(red), + unsigned char WXUNUSED(green), + unsigned char WXUNUSED(blue)) const { if ( !m_refData ) return wxNOT_FOUND;