]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/paletteg.cpp
Fixed wxAtomicInc/Dec() to not use asm/atomic.h header on Linux - it's kernel interna...
[wxWidgets.git] / src / generic / paletteg.cpp
index 6ccfde5439104ddb7b0710151f03aa3b294a374b..ac8cd8a83bf522d9b2f473c5b9ac44cb4d1cf214 100644 (file)
@@ -33,7 +33,7 @@ class wxPaletteRefData: public wxObjectRefData
   public:
 
     wxPaletteRefData(void);
-    ~wxPaletteRefData(void);
+    virtual ~wxPaletteRefData(void);
 
     int m_count;
     wxPaletteEntry *m_entries;
@@ -70,19 +70,17 @@ wxPalette::~wxPalette()
 {
 }
 
-bool wxPalette::operator == (const wxPalette& palette) const
+bool wxPalette::IsOk() const
 {
-    return m_refData == palette.m_refData;
-}
-
-bool wxPalette::operator != (const wxPalette& palette) const
-{
-    return m_refData != palette.m_refData;
+    return (m_refData != NULL);
 }
 
-bool wxPalette::Ok(void) const
+int wxPalette::GetColoursCount() const
 {
-    return (m_refData != NULL);
+    if (m_refData)
+        return M_PALETTEDATA->m_count;
+    
+    return 0;    
 }
 
 bool wxPalette::Create(int n,