X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8f177c8e7309c8cf3ece1563870d135cc8f0e6a1..94e2ed3b8db0220160c0b939782cd46914ec073a:/include/wx/msw/colour.h diff --git a/include/wx/msw/colour.h b/include/wx/msw/colour.h index 7546b611c3..d82c1dc1cf 100644 --- a/include/wx/msw/colour.h +++ b/include/wx/msw/colour.h @@ -35,7 +35,6 @@ public: // 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; };