gdiplus: Add traces for values of newly-created pens.
This commit is contained in:
parent
e68c866956
commit
7cb42df39b
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue