From: Stefan Csomor Date: Sat, 16 Jul 2011 06:57:07 +0000 (+0000) Subject: fixing typo X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/913bcbfc3db5261ef94d998b3dad0527cfdcb551 fixing typo git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68281 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/carbon/region.cpp b/src/osx/carbon/region.cpp index 448ae707a9..b9ed81e869 100644 --- a/src/osx/carbon/region.cpp +++ b/src/osx/carbon/region.cpp @@ -247,7 +247,7 @@ bool wxRegion::DoIsEqual(const wxRegion& region) const // There doesn't seem to be any native function for checking the equality // of HIShapes so we compute their differences to determine if they are // equal. - wxRegion r(this); + wxRegion r(*this); r.Subtract(region); if ( !r.IsEmpty() )