gdiplus: Make GdipTranslateLineTransform stub lie and return Ok.

This commit is contained in:
Dan Kegel 2012-02-11 15:29:56 -08:00 committed by Alexandre Julliard
parent f6dae487aa
commit 8f073bf4c7

View file

@ -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;
}
/******************************************************************************