diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-04-03 12:46:03 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-04-03 12:46:03 +0000 |
commit | 685e825122cbce160fa85a2b4e138282177c4f30 (patch) | |
tree | ecb18bba022d66ce4578bce94c7864d8ebf43437 /sw/inc/printdata.hxx | |
parent | 8ce25f3e2eecf391d35cb6515b0f5563db1f91f7 (diff) |
INTEGRATION: CWS os93 (1.7.220); FILE MERGED
2007/02/09 10:49:23 os 1.7.220.1: #i30518# brochure printing in RTL mode
Diffstat (limited to 'sw/inc/printdata.hxx')
-rw-r--r-- | sw/inc/printdata.hxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sw/inc/printdata.hxx b/sw/inc/printdata.hxx index b8fec3b627cd..72768870877b 100644 --- a/sw/inc/printdata.hxx +++ b/sw/inc/printdata.hxx @@ -4,9 +4,9 @@ * * $RCSfile: printdata.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: hr $ $Date: 2006-08-14 15:29:41 $ + * last change: $Author: rt $ $Date: 2007-04-03 13:46:03 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -47,6 +47,7 @@ struct SwPrintData { sal_Bool bPrintGraphic, bPrintTable, bPrintDraw, bPrintControl, bPrintPageBackground, bPrintBlackFont, bPrintLeftPage, bPrintRightPage, bPrintReverse, bPrintProspect, + bPrintProspect_RTL, bPrintSingleJobs, bPaperFromSetup, // --> FME 2005-12-13 #b6354161# Print empty pages bPrintEmptyPages, @@ -73,6 +74,7 @@ struct SwPrintData bPaperFromSetup = bPrintReverse = bPrintProspect = + bPrintProspect_RTL = bPrintSingleJobs = bModified = bPrintBlackFont = sal_False; @@ -93,6 +95,7 @@ struct SwPrintData bPrintRightPage == rData.bPrintRightPage && bPrintReverse == rData.bPrintReverse && bPrintProspect == rData.bPrintProspect && + bPrintProspect_RTL == rData.bPrintProspect_RTL && bPrintSingleJobs == rData.bPrintSingleJobs && bPaperFromSetup == rData.bPaperFromSetup && bPrintEmptyPages == rData.bPrintEmptyPages && @@ -110,6 +113,7 @@ struct SwPrintData sal_Bool IsPaperFromSetup() const { return bPaperFromSetup; } sal_Bool IsPrintEmptyPages() const{ return bPrintEmptyPages; } sal_Bool IsPrintProspect() const { return bPrintProspect; } + sal_Bool IsPrintProspect_RTL() const { return bPrintProspect_RTL; } sal_Bool IsPrintPageBackground() const { return bPrintPageBackground; } sal_Bool IsPrintBlackFont() const { return bPrintBlackFont;} sal_Bool IsPrintSingleJobs() const { return bPrintSingleJobs;} |