diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-04-26 20:10:16 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-04-26 20:10:16 +0300 |
commit | 7671d643079b04f9e928425435a38aa98c7c4a55 (patch) | |
tree | eb3923819f8c5c309b001ff5dc390831e8816b1e /drawinglayer | |
parent | 7b1b9d42b03032f50edf3f088f7d06b98895d21d (diff) |
loplugin:defaultparams
Not necessary to pass this argument, it defaults to the same value.
Change-Id: I090566ebc968c69351cd019e1a5b2b6a0749f03f
Diffstat (limited to 'drawinglayer')
-rw-r--r-- | drawinglayer/source/processor2d/vclpixelprocessor2d.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |