]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/colour.h
Removed redundant wx<Control>NameStr declarations.
[wxWidgets.git] / include / wx / msw / colour.h
index 7546b611c3a9cbe7f081eecc7de007cd18ba4777..56ef566d8585c1c629674291e8d9c5681d04469b 100644 (file)
@@ -30,12 +30,11 @@ public:
 
     // implicit conversion from the colour name
   wxColour( const wxString &colourName ) { InitFromName(colourName); }
-  wxColour( const char *colourName ) { InitFromName(colourName); }
+  wxColour( const wxChar *colourName ) { InitFromName(colourName); }
 
 
     // copy ctors and assignment operators
   wxColour( const wxColour& col );
-  wxColour( const wxColour* col );
   wxColour& operator = ( const wxColour& col );
 
     // dtor
@@ -65,12 +64,14 @@ public:
   unsigned char Blue() const { return m_blue; }
 
   // comparison
-  bool operator == (const wxColour& colour) const
+  bool operator==(const wxColour& colour) const
   {
-    return (m_red == colour.m_red &&
-            m_green == colour.m_green &&
-            m_blue == colour.m_blue);
+    return m_isInit == colour.m_isInit &&
+           m_red == colour.m_red &&
+           m_green == colour.m_green &&
+           m_blue == colour.m_blue;
   }
+
   bool operator != (const wxColour& colour) const { return !(*this == colour); }
 
   WXCOLORREF GetPixel() const { return m_pixel; };