Commit 8f073bf4 authored by Dan Kegel's avatar Dan Kegel Committed by Alexandre Julliard

gdiplus: Make GdipTranslateLineTransform stub lie and return Ok.

parent f6dae487
......@@ -2017,9 +2017,14 @@ GpStatus WINGDIPAPI GdipMultiplyLineTransform(GpLineGradient *brush,
GpStatus WINGDIPAPI GdipTranslateLineTransform(GpLineGradient* brush,
REAL dx, REAL dy, GpMatrixOrder order)
{
FIXME("stub: %p %f %f %d\n", brush, dx, dy, order);
static int calls;
return NotImplemented;
TRACE("(%p,%f,%f,%d)\n", brush, dx, dy, order);
if(!(calls++))
FIXME("not implemented\n");
return Ok;
}
/******************************************************************************
......
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