vcl/backendtest/outputdevice/common.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit ad9496d43cb0b967dfb47cedb515b885d6f5b575 Author: Caolán McNamara <[email protected]> AuthorDate: Sun Nov 7 14:40:14 2021 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Sun Nov 7 18:06:28 2021 +0100 cid#1493474 Arguments in wrong order Change-Id: I6738acf5e48b914491af64377b00f09fc87e8a80 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124818 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/vcl/backendtest/outputdevice/common.cxx b/vcl/backendtest/outputdevice/common.cxx index 4e36293b1d70..fb220acea014 100644 --- a/vcl/backendtest/outputdevice/common.cxx +++ b/vcl/backendtest/outputdevice/common.cxx @@ -937,6 +937,7 @@ TestResult OutputDeviceTestCommon::checkOpenBezier(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);
