diff options
-rw-r--r-- | svx/source/svdraw/svdpage.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svx/source/svdraw/svdpage.cxx b/svx/source/svdraw/svdpage.cxx index 6fe5f085b25a..c93d70627f3a 100644 --- a/svx/source/svdraw/svdpage.cxx +++ b/svx/source/svdraw/svdpage.cxx @@ -1399,6 +1399,7 @@ void SdrPage::SetOrientation(Orientation eOri) Size aSiz(GetSize()); if (aSiz.Width()!=aSiz.Height()) { if ((eOri==Orientation::Portrait) == (aSiz.Width()>aSiz.Height())) { + // coverity[swapped_arguments : FALSE] - this is in the correct order SetSize(Size(aSiz.Height(),aSiz.Width())); } } |