diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2022-02-02 21:46:51 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2022-02-03 08:16:34 +0100 |
commit | 61f8ac1db7b4e3dbdc8e2d1e32a867e5cb699afb (patch) | |
tree | 07c27d5ec549a6fb6866dda44efdfcf0883bbef6 /vcl/source | |
parent | 30483a6e0642c287d95e8d617e1a3da26e29f9f2 (diff) |
coverity: swapped-arguments->swapped_arguments in vcl/print3
Change-Id: I657cc2b99e84c0846891da0402b84a4ae668553f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129389
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/print3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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() ); } } |