Module: wine Branch: master Commit: d5fffdd0c41b7b2364be849e3cb6e5b312752b9c URL: http://source.winehq.org/git/wine.git/?a=commit;h=d5fffdd0c41b7b2364be849e3c... Author: Vincent Povirk <vincent(a)codeweavers.com> Date: Fri Dec 18 15:00:39 2009 -0600 gdiplus: Add traces for values of newly-created linecaps. --- dlls/gdiplus/customlinecap.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/dlls/gdiplus/customlinecap.c b/dlls/gdiplus/customlinecap.c index 5658e69..e8ad968 100644 --- a/dlls/gdiplus/customlinecap.c +++ b/dlls/gdiplus/customlinecap.c @@ -57,6 +57,8 @@ GpStatus WINGDIPAPI GdipCloneCustomLineCap(GpCustomLineCap* from, * sizeof(PointF)); memcpy((*to)->pathdata.Types, from->pathdata.Types, from->pathdata.Count); + TRACE("<-- %p\n", *to); + return Ok; } @@ -105,6 +107,8 @@ GpStatus WINGDIPAPI GdipCreateCustomLineCap(GpPath* fillPath, GpPath* strokePath (*customCap)->join = LineJoinMiter; (*customCap)->scale = 1.0; + TRACE("<-- %p\n", *customCap); + return Ok; }