- wxColour(const unsigned char r, const unsigned char g, const unsigned char b);
- wxColour(unsigned long colRGB) { Set(colRGB); }
- wxColour(const wxColour& col);
- wxColour(const wxString& col) { InitFromName(col); }
-// wxColour(const char *col) { InitFromName(col); }
- ~wxColour();
+ // from RGB
+ wxColour( unsigned char red, unsigned char green, unsigned char blue );
+ wxColour( unsigned long colRGB ) { Set(colRGB); }
+
+ // implicit conversion from the colour name
+ wxColour( const wxString &colourName ) { InitFromName(colourName); }
+ wxColour( const char *colourName ) { InitFromName(colourName); }