]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/colour.h
Partial Watcom C++ 10.6 support added (doesn't link for some reason)
[wxWidgets.git] / include / wx / gtk1 / colour.h
index e994c2e0895afd21ede7ad5b05eb00cc7a1c27af..ff686d2e0670032693d904ccb96b2ad4a49979f8 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Robert Roebling
 // Id:          $Id$
 // Copyright:   (c) 1998 Robert Roebling
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 
@@ -43,14 +43,13 @@ 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); }
 
     // copy ctors and assignment operators
   wxColour( const wxColour& col );
-  wxColour( const wxColour* col );
   wxColour& operator = ( const wxColour& col );
 
     // dtor
@@ -59,7 +58,7 @@ public:
   // comparison
   bool operator == ( const wxColour& col );
   bool operator != ( const wxColour& col );
-  
+
   // accessors
   void Set( unsigned char red, unsigned char green, unsigned char blue );
   unsigned char Red() const;