From: Vadim Zeitlin Date: Mon, 30 Oct 2006 22:06:21 +0000 (+0000) Subject: compilation fix after IsRefTo -> IsSameAs X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/4de63828afb3f5458033034aac39adab587f9002 compilation fix after IsRefTo -> IsSameAs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42777 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/x11/brush.cpp b/src/x11/brush.cpp index d74f745827..3eeb858046 100644 --- a/src/x11/brush.cpp +++ b/src/x11/brush.cpp @@ -42,7 +42,7 @@ public: bool operator == (const wxBrushRefData& data) const { return (m_style == data.m_style && - m_stipple.IsSameAs(&data.m_stipple) && + m_stipple.IsSameAs(data.m_stipple) && m_colour == data.m_colour); }