Module: wine
Branch: master
Commit: 88ab6d32d3597d9e4622092a7e35011c2889293d
URL: http://source.winehq.org/git/wine.git/?a=commit;h=88ab6d32d3597d9e4622092a7…
Author: Evan Stade <estade(a)gmail.com>
Date: Thu Aug 2 17:53:13 2007 -0700
gdiplus: Removed old fixmes.
---
dlls/gdiplus/graphics.c | 9 ++-------
1 files changed, 2 insertions(+), 7 deletions(-)
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, REAL y1, REAL *x2, REAL *y2, REAL amt)
}
/* 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 * pt, REAL amt, BOOL rev)
}
/* 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 GdipCreateMetafileFromEmf(HENHMETAFILE hemf, BOOL delete,
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 GdipCreateMetafileFromWmf(HMETAFILE hwmf, BOOL delete,
if(!hwmf || !metafile || !placeable)
return InvalidParameter;
-
- if(!(calls++))
- FIXME("partially implemented\n");
-
read = GetMetaFileBitsEx(hwmf, 0, NULL);
if(!read)
return GenericError;