From 0e0014ded0fc746fb715baeac30d940cf99a2b50 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 7 Apr 2014 16:12:24 +0300 Subject: Don't bother logging the CGContextSetLineWidth() here either Change-Id: I95860cd9edec474b656a7f4cc2847ef48868d699 --- vcl/quartz/salgdicommon.cxx | 1 - 1 file changed, 1 deletion(-) diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx index 72a44b91abac..873f18851b8a 100644 --- a/vcl/quartz/salgdicommon.cxx +++ b/vcl/quartz/salgdicommon.cxx @@ -909,7 +909,6 @@ bool AquaSalGraphics::drawPolyLine( CGContextSetAlpha( mrContext, 1.0 - fTransparency ); CGContextSetLineJoin( mrContext, aCGLineJoin ); CGContextSetLineCap( mrContext, aCGLineCap ); - CG_TRACE( "CGContextSetLineWidth(" << mrContext << "," << rLineWidths.getX() << ")" ); CGContextSetLineWidth( mrContext, rLineWidths.getX() ); CG_TRACE( "CGContextDrawPath(" << mrContext << ",kCGPathStroke)" ); CGContextDrawPath( mrContext, kCGPathStroke ); -- cgit