]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/palette.h
Various wxCollapsiblePane enhancements (re-patch 1577412):
[wxWidgets.git] / include / wx / os2 / palette.h
index 0ffd177910a3602f3dc4c7000bb7620c85cefcde..f6d7f0f92edb45cec77dd42957ab50e29d52d0b1 100644 (file)
@@ -22,7 +22,7 @@ class WXDLLEXPORT wxPaletteRefData: public wxGDIRefData
     friend class WXDLLEXPORT wxPalette;
 public:
     wxPaletteRefData();
-    ~wxPaletteRefData();
+    virtual ~wxPaletteRefData();
 // protected:
     WXHPALETTE                      m_hPalette;
     HPS                             m_hPS;
@@ -42,7 +42,7 @@ public:
               ,const unsigned char* pGreen
               ,const unsigned char* pBlue
              );
-    ~wxPalette();
+    virtual ~wxPalette();
 
     bool Create( int                  n
                 ,const unsigned char* pRed
@@ -59,12 +59,8 @@ public:
                 ,unsigned char* pBlue
                ) const;
 
-    virtual bool Ok(void) const { return (m_refData != NULL) ; }
-
-    inline bool       operator == (const wxPalette& rPalette) const
-        { return m_refData == rPalette.m_refData; }
-    inline bool       operator != (const wxPalette& rPalette) const
-        { return m_refData != rPalette.m_refData; }
+    virtual bool Ok() const { return IsOk(); }
+    virtual bool IsOk(void) const { return (m_refData != NULL) ; }
 
     virtual bool FreeResource(bool bForce = false);