#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
wxPaletteRefData::~wxPaletteRefData()
{
- Display *display = (Display*) NULL;
+ Display *display = NULL;
wxList::compatibility_iterator node, next;
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;