]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/palette.cpp
fixed IMPLEMENT_APP to work even if compiled with --with-themes and win32 or gtk...
[wxWidgets.git] / src / mgl / palette.cpp
index a21e74e10434475dcaf44711e95b96efa66ce999..531023287f208a59f0a025c17818a5f82c51c725 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,22 +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;