gdiplus: Add a FIXME

André Hentschel nerv at dawncrow.de
Tue Apr 12 13:17:02 CDT 2011


to make http://bugs.winehq.org/show_bug.cgi?id=26729 easier to detect.

the code is in the "file style" way

---
 dlls/gdiplus/brush.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/dlls/gdiplus/brush.c b/dlls/gdiplus/brush.c
index d6fb62d..d1af903 100644
--- a/dlls/gdiplus/brush.c
+++ b/dlls/gdiplus/brush.c
@@ -1253,11 +1253,16 @@ GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorsWithCount(GpPathGradient
 
 GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorCount(GpPathGradient *brush, INT *count)
 {
+    static int calls;
+
     TRACE("(%p, %p)\n", brush, count);
 
     if (!brush || !count)
        return InvalidParameter;
 
+    if(!(calls++))
+        FIXME("not implemented\n");
+
     return NotImplemented;
 }
 
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list