X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..e3141a349e438c71338085ea2e713e716ca2c613:/include/wx/palmos/palette.h?ds=sidebyside diff --git a/include/wx/palmos/palette.h b/include/wx/palmos/palette.h index 090a9b6a20..28e4109d20 100644 --- a/include/wx/palmos/palette.h +++ b/include/wx/palmos/palette.h @@ -34,17 +34,15 @@ class WXDLLEXPORT wxPalette: public wxPaletteBase public: wxPalette(void); - inline wxPalette(const wxPalette& palette) { Ref(palette); } wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue); ~wxPalette(void); bool Create(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue); - int GetPixel(const unsigned char red, const unsigned char green, const unsigned char blue) const; + int GetPixel(unsigned char red, unsigned char green, unsigned char blue) const; bool GetRGB(int pixel, unsigned char *red, unsigned char *green, unsigned char *blue) const; virtual bool Ok(void) const { return (m_refData != NULL) ; } - inline wxPalette& operator = (const wxPalette& palette) { if (*this == palette) return (*this); Ref(palette); return *this; } inline bool operator == (const wxPalette& palette) const { return m_refData == palette.m_refData; } inline bool operator != (const wxPalette& palette) const { return m_refData != palette.m_refData; }