gdiplus: Print the GdipCreateHalftonePalette FIXME only once.

This commit is contained in:
Vincent Povirk 2010-04-09 10:32:22 -05:00 committed by Alexandre Julliard
parent 8ead1b5750
commit 9a4618a4ba
1 changed files with 6 additions and 1 deletions

View File

@ -4481,7 +4481,12 @@ GpStatus WINGDIPAPI GdipTransformPointsI(GpGraphics *graphics, GpCoordinateSpace
HPALETTE WINGDIPAPI GdipCreateHalftonePalette(void)
{
FIXME("\n");
static int calls;
TRACE("\n");
if (!calls++)
FIXME("stub\n");
return NULL;
}