X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/917be7ed065337e8a7a67615969ecaade9eea809..fbf618dff87a9e4a88d5be458cecc50309b30af3:/include/wx/msw/palette.h?ds=inline diff --git a/include/wx/msw/palette.h b/include/wx/msw/palette.h index 73d5df709e..748d14b9ec 100644 --- a/include/wx/msw/palette.h +++ b/include/wx/msw/palette.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: palette.h +// Name: wx/msw/palette.h // Purpose: wxPalette class // Author: Julian Smart // Modified by: @@ -12,10 +12,6 @@ #ifndef _WX_PALETTE_H_ #define _WX_PALETTE_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface "palette.h" -#endif - #include "wx/gdiobj.h" class WXDLLEXPORT wxPalette; @@ -43,7 +39,7 @@ public: 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) ; }