]> git.saurik.com Git - wxWidgets.git/commitdiff
fixing width/height (were negative) thanks to Werner Smekal
authorStefan Csomor <csomor@advancedconcepts.ch>
Tue, 19 Jul 2011 10:56:04 +0000 (10:56 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Tue, 19 Jul 2011 10:56:04 +0000 (10:56 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68300 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/carbon/region.cpp

index b9ed81e869e4ef6719423cc93c65ac2158d07f13..99a9875516c9ecae05c0538cb3d29d7fc4790d1a 100644 (file)
@@ -89,8 +89,8 @@ wxRegion::wxRegion(long x, long y, long w, long h)
 wxRegion::wxRegion(const wxPoint& topLeft, const wxPoint& bottomRight)
 {
     m_refData = new wxRegionRefData(topLeft.x , topLeft.y ,
-                                    topLeft.x - bottomRight.x ,
-                                    topLeft.y - bottomRight.y);
+                                    bottomRight.x - topLeft.x,
+                                    bottomRight.y - topLeft.y);
 }
 
 wxRegion::wxRegion(const wxRect& rect)