X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/670f9935630beb2123a5ca62894ae92a3f0efa4f..e733c4ce1e24cf7e4b0b0d8362fc59aaa7a7641c:/src/x11/palette.cpp diff --git a/src/x11/palette.cpp b/src/x11/palette.cpp index aa81fd4ae0..09ecbae93f 100644 --- a/src/x11/palette.cpp +++ b/src/x11/palette.cpp @@ -4,7 +4,6 @@ // Author: Julian Smart // Modified by: // Created: 17/09/98 -// RCS-ID: $Id$ // Copyright: (c) Julian Smart // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -41,11 +40,10 @@ 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" -#include "wx/utils.h" - #ifdef __VMS__ #pragma message disable nosimpint #endif @@ -78,7 +76,7 @@ wxPaletteRefData::wxPaletteRefData() wxPaletteRefData::~wxPaletteRefData() { - Display *display = (Display*) NULL; + Display *display = NULL; wxList::compatibility_iterator node, next; @@ -171,7 +169,22 @@ 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 * WXUNUSED(data)) const +{ + wxFAIL_MSG( wxS("Cloning palettes is not implemented in wxX11.") ); + + return new wxPaletteRefData; +} + +int wxPalette::GetPixel(unsigned char WXUNUSED(red), + unsigned char WXUNUSED(green), + unsigned char WXUNUSED(blue)) const { if ( !m_refData ) return wxNOT_FOUND;