[10/11] gdiplus: removed old fixmes

Evan Stade estade at gmail.com
Thu Aug 2 19:53:13 CDT 2007


Hi,

 dlls/gdiplus/graphics.c |    9 ++-------
 1 files changed, 2 insertions(+), 7 deletions(-)
-- 
Evan Stade
-------------- next part --------------
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index ab19fa7..c21e891 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -471,7 +471,7 @@ static void shorten_line_amt(REAL x1, RE
 }
 
 /* Draws lines between the given points, and if caps is true then draws an endcap
- * at the end of the last line.  FIXME: Startcaps not implemented. */
+ * at the end of the last line. */
 static GpStatus draw_polyline(GpGraphics *graphics, GpPen *pen,
     GDIPCONST GpPointF * pt, INT count, BOOL caps)
 {
@@ -570,7 +570,7 @@ static void shorten_bezier_amt(GpPointF 
 }
 
 /* Draws bezier curves between given points, and if caps is true then draws an
- * endcap at the end of the last line.  FIXME: Startcaps not implemented. */
+ * endcap at the end of the last line. */
 static GpStatus draw_polybezier(GpGraphics *graphics, GpPen *pen,
     GDIPCONST GpPointF * pt, INT count, BOOL caps)
 {
@@ -814,7 +814,6 @@ GpStatus WINGDIPAPI GdipCreateMetafileFr
 GpStatus WINGDIPAPI GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete,
     GDIPCONST WmfPlaceableFileHeader * placeable, GpMetafile **metafile)
 {
-    static int calls;
     IStream *stream = NULL;
     UINT read;
     BYTE* copy;
@@ -823,10 +822,6 @@ GpStatus WINGDIPAPI GdipCreateMetafileFr
 
     if(!hwmf || !metafile || !placeable)
         return InvalidParameter;
-
-    if(!(calls++))
-        FIXME("partially implemented\n");
-
     read = GetMetaFileBitsEx(hwmf, 0, NULL);
     if(!read)
         return GenericError;
-- 
1.4.1


More information about the wine-patches mailing list