gdiplus: Add missing '\n' to ok() calls, Wine traces.
This commit is contained in:
parent
9821acf5d2
commit
99aeee6220
|
@ -50,7 +50,7 @@ GpStatus WINGDIPAPI GdipCreatePen1(ARGB color, FLOAT width, GpUnit unit,
|
||||||
gp_pen->gdipen = ExtCreatePen(gp_pen->style, (INT) gp_pen->width, &lb,
|
gp_pen->gdipen = ExtCreatePen(gp_pen->style, (INT) gp_pen->width, &lb,
|
||||||
0, NULL);
|
0, NULL);
|
||||||
} else {
|
} else {
|
||||||
FIXME("UnitWorld, UnitPixel only supported units");
|
FIXME("UnitWorld, UnitPixel only supported units\n");
|
||||||
return NotImplemented;
|
return NotImplemented;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,7 @@ static void test_constructor_destructor(void)
|
||||||
|
|
||||||
status = GdipCreatePen1((ARGB)0xffff00ff, 10.0f, UnitPixel, &pen);
|
status = GdipCreatePen1((ARGB)0xffff00ff, 10.0f, UnitPixel, &pen);
|
||||||
expect(Ok, status);
|
expect(Ok, status);
|
||||||
ok(pen != NULL, "Expected pen to be initialized");
|
ok(pen != NULL, "Expected pen to be initialized\n");
|
||||||
|
|
||||||
status = GdipDeletePen(NULL);
|
status = GdipDeletePen(NULL);
|
||||||
expect(InvalidParameter, status);
|
expect(InvalidParameter, status);
|
||||||
|
|
Loading…
Reference in New Issue