]> git.saurik.com Git - wxWidgets.git/commitdiff
fixing typo
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 16 Jul 2011 06:57:07 +0000 (06:57 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 16 Jul 2011 06:57:07 +0000 (06:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68281 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/carbon/region.cpp

index 448ae707a915f72ff016d88702a22a642400eb05..b9ed81e869e4ef6719423cc93c65ac2158d07f13 100644 (file)
@@ -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() )