]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/palette.cpp
Updated wxWidgets icons in art to use the new official logo.
[wxWidgets.git] / src / mgl / palette.cpp
index a21e74e10434475dcaf44711e95b96efa66ce999..92536bb350ba7ac7a0e4d6f09bafe8b3da18ee24 100644 (file)
@@ -26,7 +26,7 @@ class wxPaletteRefData: public wxObjectRefData
 {
     public:
         wxPaletteRefData(void);
-        ~wxPaletteRefData(void);
+        virtual ~wxPaletteRefData(void);
 
         int m_count;
         palette_t *m_entries;
@@ -59,37 +59,10 @@ wxPalette::wxPalette(int n, const unsigned char *red, const unsigned char *green
     Create(n, red, green, blue);
 }
 
-wxPalette::wxPalette(const wxPalette& palette)
-{
-    Ref(palette);
-}
-
 wxPalette::~wxPalette()
 {
 }
 
-wxPalette& wxPalette::operator = (const wxPalette& palette)
-{
-    if (*this == palette) return (*this);
-    Ref(palette);
-    return *this;
-}
-
-bool wxPalette::operator == (const wxPalette& palette) const
-{
-    return m_refData == palette.m_refData;
-}
-
-bool wxPalette::operator != (const wxPalette& palette) const
-{
-    return m_refData != palette.m_refData;
-}
-
-bool wxPalette::Ok(void) const
-{
-    return (m_refData != NULL);
-}
-
 bool wxPalette::Create(int n,
                        const unsigned char *red,
                        const unsigned char *green,