diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-04-01 11:55:47 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-04-01 11:57:26 +0300 |
commit | e93a84d4857af442122d54c4d4857fa90d9f22f9 (patch) | |
tree | fd6f522d92ee94c7db43bf1f831eff8ec37914a7 /vcl | |
parent | 3972a2fecc63d2d01aa902359b02ef9929d51f62 (diff) |
Add two more CG_TRACEs
Change-Id: Ib1ab15a0daa9e8cc1f48e6ff1b212b463fcb0004
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/quartz/salgdicommon.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx index 58fcc7f327a8..7b5800dceb10 100644 --- a/vcl/quartz/salgdicommon.cxx +++ b/vcl/quartz/salgdicommon.cxx @@ -1615,7 +1615,9 @@ void AquaSalGraphics::SetState() } // set RGB colorspace and line and fill colors + CG_TRACE( "CGContextSetFillColor(" << mrContext << "," << maFillColor << ")" ); CGContextSetFillColor( mrContext, maFillColor.AsArray() ); + CG_TRACE( "CGContextSetStrokeColor(" << mrContext << "," << maLineColor << ")" ); CGContextSetStrokeColor( mrContext, maLineColor.AsArray() ); CGContextSetShouldAntialias( mrContext, false ); if( mnXorMode == 2 ) |