From 4de63828afb3f5458033034aac39adab587f9002 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 30 Oct 2006 22:06:21 +0000 Subject: [PATCH] compilation fix after IsRefTo -> IsSameAs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42777 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/x11/brush.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.45.2