From: Stefan Csomor Date: Thu, 14 Feb 2002 09:02:54 +0000 (+0000) Subject: added .inited comparison as suggested by John McPherson to avoid comparison wxBlack... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/318fa6983d11825cac47e3419d9ca0552ae3f94a?ds=inline added .inited comparison as suggested by John McPherson to avoid comparison wxBlack to wxNullBitmap being true git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14196 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/mac/colour.h b/include/wx/mac/colour.h index c290cbefd6..13f24cc716 100644 --- a/include/wx/mac/colour.h +++ b/include/wx/mac/colour.h @@ -68,7 +68,8 @@ public: // comparison bool operator == (const wxColour& colour) const { - return (m_red == colour.m_red && + return (m_isInit == colour.m_isInit && + m_red == colour.m_red && m_green == colour.m_green && m_blue == colour.m_blue); }