From 6a8dba378b5693f5d9fbf3e78eda1cd9d0bc0734 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Mon, 14 Jul 2008 21:13:35 +0000 Subject: [PATCH] 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 --- src/dfb/dc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dfb/dc.cpp b/src/dfb/dc.cpp index 67609b4f13..aecb71fa44 100644 --- a/src/dfb/dc.cpp +++ b/src/dfb/dc.cpp @@ -107,7 +107,7 @@ void wxDFBDCImpl::DoSetDeviceClippingRegion(const wxRegion& region) rect.width = XDEV2LOG(rect.width); rect.height = YDEV2LOG(rect.height); - DoSetClippingRegion(rect); + DoSetClippingRegion(rect.x, rect.y, rect.width, rect.height); } void wxDFBDCImpl::DestroyClippingRegion() -- 2.45.2