diff options
author | Srijan Bhatia <srijanbhatiasun@gmail.com> | 2020-07-12 21:27:08 +0530 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2020-10-27 18:36:47 +0100 |
commit | cd1c6c06cdba864238e1a590759b053ef12b80cb (patch) | |
tree | b81707ca72abe872b4cefac514e730628abaa274 /sd | |
parent | 482507d7bbc915fd5a10c64bfb60695b2a233a12 (diff) |
tdf#127680 change even/odd dialog order
Change-Id: I6dea25b3d212072df9a6638dc774f35e203e1f80
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98602
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Signed-off-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104878
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/view/DocumentRenderer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/view/DocumentRenderer.cxx b/sd/source/ui/view/DocumentRenderer.cxx index 8a9be771b149..3c3f44de011d 100644 --- a/sd/source/ui/view/DocumentRenderer.cxx +++ b/sd/source/ui/view/DocumentRenderer.cxx @@ -187,13 +187,13 @@ namespace { bool IsPrintFrontPage() const { sal_Int32 nInclude = static_cast<sal_Int32>(mrProperties.getIntValue( "EvenOdd", 0 )); - return nInclude != 1; + return nInclude != 2; } bool IsPrintBackPage() const { sal_Int32 nInclude = static_cast<sal_Int32>(mrProperties.getIntValue( "EvenOdd", 0 )); - return nInclude != 2; + return nInclude != 1; } bool IsPaperBin() const |