commit | 9a4618a4ba6bc98f50de68ad72b944e820b68d98 | [log] [tgz] |
---|---|---|
author | Vincent Povirk <vincent@codeweavers.com> | Fri Apr 09 10:32:22 2010 -0500 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Apr 09 18:34:57 2010 +0200 |
tree | 17e9464fc312654c2763bfb5f4835c0e1b21775d | |
parent | 8ead1b575051b12a6f8d34157245b6c031ca5a01 [diff] [blame] |
gdiplus: Print the GdipCreateHalftonePalette FIXME only once.
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c index 18dae2d..7510fa0 100644 --- a/dlls/gdiplus/graphics.c +++ b/dlls/gdiplus/graphics.c
@@ -4481,7 +4481,12 @@ HPALETTE WINGDIPAPI GdipCreateHalftonePalette(void) { - FIXME("\n"); + static int calls; + + TRACE("\n"); + + if (!calls++) + FIXME("stub\n"); return NULL; }