Commit 21763489 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

gdiplus: Return success saving path to metafile.

parent 70afb4ec
......@@ -2937,7 +2937,7 @@ GpStatus METAFILE_DrawPath(GpMetafile *metafile, GpPen *pen, GpPath *path)
draw_path_record->PenId = pen_id;
METAFILE_WriteRecords(metafile);
return NotImplemented;
return Ok;
}
static GpStatus METAFILE_AddBrushObject(GpMetafile *metafile, GpBrush *brush, DWORD *id)
......
......@@ -2651,7 +2651,7 @@ static void test_drawpath(void)
expect(Ok, stat);
stat = GdipDrawPath(graphics, pen, path);
todo_wine expect(Ok, stat);
expect(Ok, stat);
stat = GdipDeletePen(pen);
expect(Ok, stat);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment