]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/palette.h
Added IMPLEMENT_CLASS, ... about wxStream classes (I hope I didn't make mistakes).
[wxWidgets.git] / include / wx / msw / palette.h
index bddc8a334ce99cf78ca94196e6d1092977b0f433..f7dffc57b0d2fa752963f8ba265a97ee05817462 100644 (file)
@@ -41,11 +41,11 @@ public:
   inline wxPalette(const wxPalette& palette) { Ref(palette); }
   inline wxPalette(const wxPalette* palette) { /* UnRef(); */ if (palette) Ref(*palette); }
 
-  wxPalette(const int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
+  wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
   ~wxPalette(void);
-  bool Create(const int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
+  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;
-  bool GetRGB(const int pixel, 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) ; }