Commit cb8f4eb1 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

gdiplus: Implemented GdipTranslateRegionI.

parent c3462b11
......@@ -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);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment