compilation fix after last change

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41440 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-09-25 17:30:48 +00:00
parent eb86f7ab80
commit 22143f7164

View File

@@ -270,7 +270,7 @@ wxRegionContain wxRegion::DoContainsRect(const wxRect& r) const
if (!m_refData)
return wxOutRegion;
Rect rect = { r.y , r.x , r.y + r.h , r.x + r.w } ;
Rect rect = { r.y , r.x , r.y + r.height , r.x + r.width } ;
if (RectInRgn( &rect , M_REGION ) )
return wxInRegion;
else