gdiplus: Add traces for values of newly-created pens.

This commit is contained in:
Vincent Povirk 2009-12-18 15:24:51 -06:00 committed by Alexandre Julliard
parent e68c866956
commit 7cb42df39b

View file

@ -101,6 +101,8 @@ GpStatus WINGDIPAPI GdipClonePen(GpPen *pen, GpPen **clonepen)
GdipCloneCustomLineCap(pen->customend, &(*clonepen)->customend);
GdipCloneBrush(pen->brush, &(*clonepen)->brush);
TRACE("<-- %p\n", *clonepen);
return Ok;
}
@ -154,6 +156,8 @@ GpStatus WINGDIPAPI GdipCreatePen2(GpBrush *brush, REAL width, GpUnit unit,
*pen = gp_pen;
TRACE("<-- %p\n", *pen);
return Ok;
}