diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-17 20:08:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 09:36:45 +0200 |
commit | cd7fe8938160015ed8bf53b8164d26fca99e7074 (patch) | |
tree | d865a9a975646b32ea277e72ca4061da23745baf /vcl | |
parent | 5e9e09e7bff0cb99b48dcf3af942a45b573ac7b5 (diff) |
cid#1448365 silence Arguments in wrong order
Change-Id: I20a64d73add3636e02e02ea970577c0505e2b5fd
Reviewed-on: https://gerrit.libreoffice.org/75804
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/printdlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx index 758a1c444b7c..df1a8c7bac8c 100644 --- a/vcl/source/window/printdlg.cxx +++ b/vcl/source/window/printdlg.cxx @@ -1022,7 +1022,7 @@ void PrintDialog::checkPaperSize( Size& rPaperSize ) if ( (eOrientation == Orientation::Portrait && rPaperSize.Width() > rPaperSize.Height()) || (eOrientation == Orientation::Landscape && rPaperSize.Width() < rPaperSize.Height()) ) { - // coverity[swapped_arguments : FALSE] - this is in the correct order + // coverity[swapped-arguments : FALSE] - this is in the correct order rPaperSize = Size( rPaperSize.Height(), rPaperSize.Width() ); } } |