]> git.saurik.com Git - wxWidgets.git/blobdiff - src/x11/palette.cpp
added enabled and hidden attributes to radio box items in XRC
[wxWidgets.git] / src / x11 / palette.cpp
index 61a885cbddc7dff21901198fdda7ad54fd104ea8..79f27675560330046fae2b18d023e8cb86311fb1 100644 (file)
@@ -170,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;