diff options
author | Srijan Bhatia <srijanbhatiasun@gmail.com> | 2020-07-12 21:27:08 +0530 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2020-07-24 11:40:52 +0200 |
commit | 28df1d9a8d51ce8b682a9723fcc2810127c3d7a2 (patch) | |
tree | ef2a4ea701f19669b1d3381f2752e1d7665dfb88 /sd | |
parent | 9b6ea15266e32b44f2075b30281a42c412d9dc33 (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>
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 |