vcl/source/gdi/print3.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 61f8ac1db7b4e3dbdc8e2d1e32a867e5cb699afb
Author:     Julien Nabet <serval2...@yahoo.fr>
AuthorDate: Wed Feb 2 21:46:51 2022 +0100
Commit:     Julien Nabet <serval2...@yahoo.fr>
CommitDate: Thu Feb 3 08:16:34 2022 +0100

    coverity: swapped-arguments->swapped_arguments in vcl/print3
    
    Change-Id: I657cc2b99e84c0846891da0402b84a4ae668553f
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129389
    Tested-by: Julien Nabet <serval2...@yahoo.fr>
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>

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() );
             }
         }

Reply via email to