added back the missing "unsigned"s to wxColour ctor

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@889 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1998-10-20 21:40:39 +00:00
parent 4d94751752
commit 87832b70c5
3 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,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); }