fixing typo

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68281 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2011-07-16 06:57:07 +00:00
parent 1715d4fef9
commit 913bcbfc3d

View 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() )