From 7671d643079b04f9e928425435a38aa98c7c4a55 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 26 Apr 2016 20:10:16 +0300 Subject: loplugin:defaultparams Not necessary to pass this argument, it defaults to the same value. Change-Id: I090566ebc968c69351cd019e1a5b2b6a0749f03f --- drawinglayer/source/processor2d/vclpixelprocessor2d.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'drawinglayer') diff --git a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx index f3b08ec5795b..70d0ffbae530 100644 --- a/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx +++ b/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx @@ -260,8 +260,8 @@ namespace drawinglayer fTransparency, rSource.getLineAttribute().getLineJoin(), rSource.getLineAttribute().getLineCap(), - rSource.getLineAttribute().getMiterMinimumAngle(), - false /*bBypassAACheck, default*/)) + rSource.getLineAttribute().getMiterMinimumAngle() + /* false bBypassAACheck, default*/)) { bTryWorked = true; } -- cgit