From cb8f4eb16c27b83de86ed52ac4a88e8005fd71b7 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Fri, 30 Jan 2009 23:03:17 +0300 Subject: [PATCH] gdiplus: Implemented GdipTranslateRegionI. --- dlls/gdiplus/region.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dlls/gdiplus/region.c b/dlls/gdiplus/region.c index 0fe6782887b..cc3b6cbe235 100644 --- a/dlls/gdiplus/region.c +++ b/dlls/gdiplus/region.c @@ -1139,9 +1139,12 @@ GpStatus WINGDIPAPI GdipTranslateRegion(GpRegion *region, REAL dx, REAL dy) return Ok; } +/***************************************************************************** + * GdipTranslateRegionI [GDIPLUS.@] + */ GpStatus WINGDIPAPI GdipTranslateRegionI(GpRegion *region, INT dx, INT dy) { - FIXME("(%p, %d, %d): stub\n", region, dx, dy); + TRACE("(%p, %d, %d)\n", region, dx, dy); - return NotImplemented; + return GdipTranslateRegion(region, (REAL)dx, (REAL)dy); }