From 67aec439153b8a374d418cfe653b601f8d1b514a Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Wed, 16 Oct 2013 04:12:49 +0200 Subject: cleanup Change-Id: I7bfd221f89718ba8634417c93a26b3a199178694 --- vcl/aqua/source/gdi/salgdicommon.cxx | 4 ---- 1 file changed, 4 deletions(-) (limited to 'vcl/aqua') diff --git a/vcl/aqua/source/gdi/salgdicommon.cxx b/vcl/aqua/source/gdi/salgdicommon.cxx index 45be91e63b7b..d9c54d97618b 100644 --- a/vcl/aqua/source/gdi/salgdicommon.cxx +++ b/vcl/aqua/source/gdi/salgdicommon.cxx @@ -813,10 +813,8 @@ bool AquaSalGraphics::drawPolyLine( AddPolygonToPath( xPath, rPolyLine, rPolyLine.isClosed(), !getAntiAliasB2DDraw(), true ); const CGRect aRefreshRect = CGPathGetBoundingBox( xPath ); -#ifndef NO_I97317_WORKAROUND // #i97317# workaround for Quartz having problems with drawing small polygons if( ! ((aRefreshRect.size.width <= 0.125) && (aRefreshRect.size.height <= 0.125)) ) -#endif { // use the path to prepare the graphics context CGContextSaveGState( mrContext ); @@ -867,10 +865,8 @@ bool AquaSalGraphics::drawPolyPolygon( const ::basegfx::B2DPolyPolygon& rPolyPol } const CGRect aRefreshRect = CGPathGetBoundingBox( xPath ); -#ifndef NO_I97317_WORKAROUND // #i97317# workaround for Quartz having problems with drawing small polygons if( ! ((aRefreshRect.size.width <= 0.125) && (aRefreshRect.size.height <= 0.125)) ) -#endif { // use the path to prepare the graphics context CGContextSaveGState( mrContext ); -- cgit