]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/palette.cpp
Don't reset bullet number and outline number when applying style sheet.
[wxWidgets.git] / src / x11 / palette.cpp
index 8d7852654f05dcf37d6c64aaab04a10dc038ba2a..82c455bd807a0ac0dd981901c0f686572f89ae3a 100644 (file)
@@ -77,7 +77,7 @@ wxPaletteRefData::wxPaletteRefData()
 
 wxPaletteRefData::~wxPaletteRefData()
 {
-    Display *display = (Display*) NULL;
+    Display *display = NULL;
 
     wxList::compatibility_iterator node, next;
 
@@ -170,6 +170,16 @@ bool wxPalette::Create(int n, const unsigned char *red, const unsigned char *gre
     return true;
 }
 
+wxGDIRefData *wxPalette::CreateGDIRefData() const
+{
+    return new wxPaletteRefData;
+}
+
+wxGDIRefData *wxPalette::CloneGDIRefData(const wxGDIRefData *data) const
+{
+    return new wxPaletteRefData(*static_cast<const wxPaletteRefData *>(data));
+}
+
 int wxPalette::GetPixel(unsigned char WXUNUSED(red),
                         unsigned char WXUNUSED(green),
                         unsigned char WXUNUSED(blue)) const