]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/x11/palette.h
fix bug in Eof() which returned true even if we were only on the last line, not beyond it
[wxWidgets.git] / include / wx / x11 / palette.h
index c36269fbba7bb68fec2a1e804fe7e08c8ee05d99..2054a9a12849b0be14f2c1894a6e034dbfa3d5d9 100644 (file)
@@ -51,7 +51,6 @@ class WXDLLEXPORT wxPalette: public wxPaletteBase
 
 public:
     wxPalette();
-    wxPalette(const wxPalette& palette) { Ref(palette); }
 
     wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
     ~wxPalette();
@@ -61,7 +60,6 @@ public:
 
     virtual bool Ok() const { return (m_refData != NULL) ; }
 
-    wxPalette& operator = (const wxPalette& palette) { if (*this == palette) return (*this); Ref(palette); return *this; }
     bool operator == (const wxPalette& palette) const { return m_refData == palette.m_refData; }
     bool operator != (const wxPalette& palette) const { return m_refData != palette.m_refData; }