summaryrefslogtreecommitdiff
path: root/sw/source/core/doc/doc.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/doc/doc.cxx')
-rw-r--r--sw/source/core/doc/doc.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/doc/doc.cxx b/sw/source/core/doc/doc.cxx
index d7e75c449dc3..1c419fe49d8f 100644
--- a/sw/source/core/doc/doc.cxx
+++ b/sw/source/core/doc/doc.cxx
@@ -870,8 +870,8 @@ void SwDoc::CalculatePagesForPrinting(
// properties to take into account when calculating the set of pages
// (PDF export UI does not allow for selecting left or right pages only)
- bool bPrintLeftPages = bIsPDFExport ? true : rOptions.IsPrintLeftPages();
- bool bPrintRightPages = bIsPDFExport ? true : rOptions.IsPrintRightPages();
+ bool bPrintLeftPages = bIsPDFExport || rOptions.IsPrintLeftPages();
+ bool bPrintRightPages = bIsPDFExport || rOptions.IsPrintRightPages();
// #i103700# printing selections should not allow for automatic inserting empty pages
bool bPrintEmptyPages = bPrintSelection ? false : rOptions.IsPrintEmptyPages( bIsPDFExport );