]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/palette.cpp
Applied #15375 to stop event-sending in generic wxSpinCtrl ctor (eco)
[wxWidgets.git] / src / x11 / palette.cpp
index 8d7852654f05dcf37d6c64aaab04a10dc038ba2a..09ecbae93f02b0116416d25fb1e3b1538e1ed5a8 100644 (file)
@@ -4,7 +4,6 @@
 // Author:      Julian Smart
 // Modified by:
 // Created:     17/09/98
 // Author:      Julian Smart
 // Modified by:
 // Created:     17/09/98
-// RCS-ID:      $Id$
 // Copyright:   (c) Julian Smart
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 // Copyright:   (c) Julian Smart
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -77,7 +76,7 @@ wxPaletteRefData::wxPaletteRefData()
 
 wxPaletteRefData::~wxPaletteRefData()
 {
 
 wxPaletteRefData::~wxPaletteRefData()
 {
-    Display *display = (Display*) NULL;
+    Display *display = NULL;
 
     wxList::compatibility_iterator node, next;
 
 
     wxList::compatibility_iterator node, next;
 
@@ -170,6 +169,19 @@ bool wxPalette::Create(int n, const unsigned char *red, const unsigned char *gre
     return true;
 }
 
     return true;
 }
 
+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
 int wxPalette::GetPixel(unsigned char WXUNUSED(red),
                         unsigned char WXUNUSED(green),
                         unsigned char WXUNUSED(blue)) const