From 61f8ac1db7b4e3dbdc8e2d1e32a867e5cb699afb Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Wed, 2 Feb 2022 21:46:51 +0100 Subject: coverity: swapped-arguments->swapped_arguments in vcl/print3 Change-Id: I657cc2b99e84c0846891da0402b84a4ae668553f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129389 Tested-by: Julien Nabet Reviewed-by: Julien Nabet --- vcl/source/gdi/print3.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl/source') diff --git a/vcl/source/gdi/print3.cxx b/vcl/source/gdi/print3.cxx index aecc43e15e33..f07c123f8f0f 100644 --- a/vcl/source/gdi/print3.cxx +++ b/vcl/source/gdi/print3.cxx @@ -232,7 +232,7 @@ public: if ( (meUserOrientation == Orientation::Portrait && size.Width() > size.Height()) || (meUserOrientation == Orientation::Landscape && size.Width() < size.Height()) ) { - // coverity[swapped-arguments : FALSE] - this is in the correct order + // coverity[swapped_arguments : FALSE] - this is in the correct order size = Size( size.Height(), size.Width() ); } } -- cgit