X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2bda0e173844e8e0f8acf4e8ad8b5c26e5c6fe5d..ce3ed50dbe32d118321082db84c3a9abb047d5b7:/include/wx/msw/palette.h diff --git a/include/wx/msw/palette.h b/include/wx/msw/palette.h index bddc8a334c..4383c44a3f 100644 --- a/include/wx/msw/palette.h +++ b/include/wx/msw/palette.h @@ -5,12 +5,12 @@ // Modified by: // Created: 01/02/97 // RCS-ID: $Id$ -// Copyright: (c) Julian Smart and Markus Holzem -// Licence: wxWindows license +// Copyright: (c) Julian Smart +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifndef __PALETTEH__ -#define __PALETTEH__ +#ifndef _WX_PALETTE_H_ +#define _WX_PALETTE_H_ #ifdef __GNUG__ #pragma interface "palette.h" @@ -39,13 +39,12 @@ class WXDLLEXPORT wxPalette: public wxGDIObject public: wxPalette(void); 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) ; } @@ -63,4 +62,4 @@ public: #define wxColourMap wxPalette #endif - // __PALETTEH__ + // _WX_PALETTE_H_