compilation fix after SetClippingRegion changes (patch #9696 by Anders Larsen)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54621 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -107,7 +107,7 @@ void wxDFBDCImpl::DoSetDeviceClippingRegion(const wxRegion& region)
|
|||||||
rect.width = XDEV2LOG(rect.width);
|
rect.width = XDEV2LOG(rect.width);
|
||||||
rect.height = YDEV2LOG(rect.height);
|
rect.height = YDEV2LOG(rect.height);
|
||||||
|
|
||||||
DoSetClippingRegion(rect);
|
DoSetClippingRegion(rect.x, rect.y, rect.width, rect.height);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxDFBDCImpl::DestroyClippingRegion()
|
void wxDFBDCImpl::DestroyClippingRegion()
|
||||||
|
Reference in New Issue
Block a user