summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-08-13 15:34:44 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-08-13 20:05:14 +0200
commit9b564e8b32be960b1be2caa377a52e84606270bb (patch)
tree7ec9522832d56744bfd0a036926df7f9c2fda9bf /vcl
parentf966b9e8bb2b5e7e563807d16088a9f3784f01fe (diff)
cid#1490210 silence Arguments in wrong order
Change-Id: I8767fe556142ec7e3254eaff56bbb1b4eb8322e4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120462 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/backendtest/outputdevice/common.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/backendtest/outputdevice/common.cxx b/vcl/backendtest/outputdevice/common.cxx
index b5654c5c45e3..d205bf3b7488 100644
--- a/vcl/backendtest/outputdevice/common.cxx
+++ b/vcl/backendtest/outputdevice/common.cxx
@@ -745,6 +745,7 @@ TestResult OutputDeviceTestCommon::checkHalfEllipse(Bitmap& rBitmap, bool aEnabl
{
for (tools::Long y = 0; y < pAccess->Height(); ++y)
{
+ // coverity[swapped_arguments : FALSE] - this is in the correct order
if (SetPixels[{ y, x }])
{
if (aEnableAA)
@@ -790,6 +791,7 @@ TestResult OutputDeviceTestCommon::checkClosedBezier(Bitmap& rBitmap)
{
for (tools::Long y = 0; y < pAccess->Height(); ++y)
{
+ // coverity[swapped_arguments : FALSE] - this is in the correct order
if (SetPixels[{ y, x }])
{
checkValue(pAccess, x, y, constLineColor, nNumberOfQuirks, nNumberOfErrors, true);