X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e4a81a2e96b5a349ee9430b91d36e7e8a21d7976..57c208c5759da71a637f0f0f5b7d3dc3eda09c02:/include/wx/stubs/colour.h?ds=sidebyside diff --git a/include/wx/stubs/colour.h b/include/wx/stubs/colour.h index 0f592f5789..16ffdac9aa 100644 --- a/include/wx/stubs/colour.h +++ b/include/wx/stubs/colour.h @@ -6,7 +6,7 @@ // Created: ??/??/98 // RCS-ID: $Id$ // Copyright: (c) AUTHOR -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_COLOUR_H_ @@ -27,7 +27,7 @@ public: // default wxColour(); // from RGB - wxColour( char red, char green, char blue ); + wxColour( unsigned char red, unsigned char green, unsigned char blue ); // implicit conversion from the colour name wxColour( const wxString &colourName ) { InitFromName(colourName); } wxColour( const char *colourName ) { InitFromName(colourName); } @@ -72,12 +72,14 @@ public: } bool operator != (const wxColour& colour) { return !(*this == colour); } + void InitFromName(const wxString& col); + /* TODO WXCOLORREF GetPixel() const { return m_pixel; }; */ private: - bool m_isInit; + bool m_isInit; unsigned char m_red; unsigned char m_blue; unsigned char m_green; @@ -92,4 +94,4 @@ private: }; #endif - // _WX_COLOUR_H_ + // _WX_COLOUR_H_