summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorThomas Lange <tl@openoffice.org>2009-08-25 13:10:30 +0000
committerThomas Lange <tl@openoffice.org>2009-08-25 13:10:30 +0000
commitf8775840347067a54bd90c906b31e5fb258293d6 (patch)
tree64ff3c1c959744cfbbd4ceb9aa5aadba1ea7b3c9 /sw/inc
parent8e24d60a844f03e6ff664a5c5ceddfbd95cd75d7 (diff)
#i101242# changes for printing of notes
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/printdata.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/inc/printdata.hxx b/sw/inc/printdata.hxx
index d9be041ded8c..e00ef66c977d 100644
--- a/sw/inc/printdata.hxx
+++ b/sw/inc/printdata.hxx
@@ -57,14 +57,14 @@ class SwPrintUIOptions : public vcl::PrinterOptionsHelper
// pages valid for printing (according to the current settings)
// and their respective start frames (see getRendererCount in unotxdoc.cxx)
// This set of pages does NOT depend on the 'PageRange' that is used as a printing option!
- std::set< sal_Int32 > m_aValidPages; // the set of possible pages (see StringRangeEnumerator::getRangesFromString )
- std::map< sal_Int32, const SwPageFrm * > m_aValidStartFrms; // the map of start frames for those pages
+ std::set< sal_Int32 > m_aValidPages; // the set of possible pages (see StringRangeEnumerator::getRangesFromString )
+ std::map< sal_Int32, const SwPageFrm * > m_aValidStartFrames; // the map of start frames for those pages
// vector of pages and their order to be printed (duplicates and any order allowed!)
// (see 'render' in unotxdoc.cxx)
- std::vector< sal_Int32 > m_aPagesToPrint;
+ std::vector< sal_Int32 > m_aPagesToPrint;
- std::vector< const SwPageFrm * > m_aPostItStartFrame;
+ std::vector< const SwPageFrm * > m_aPostItStartFrames;
// for prospect printing: the pairs of pages to be printed together on a single prospect page.
// -1 indicates a half page to be left empty.
@@ -102,8 +102,8 @@ public:
std::set< sal_Int32 > & GetValidPagesSet() { return m_aValidPages; }
const std::set< sal_Int32 > & GetValidPagesSet() const { return m_aValidPages; }
- ValidStartFramesMap_t & GetValidStartFrms() { return m_aValidStartFrms; }
- const ValidStartFramesMap_t & GetValidStartFrms() const { return m_aValidStartFrms; }
+ ValidStartFramesMap_t & GetValidStartFrames() { return m_aValidStartFrames; }
+ const ValidStartFramesMap_t & GetValidStartFrames() const { return m_aValidStartFrames; }
// used for 'normal' printing
// A page value of 0 as entry indicates that this page is not from the document but
@@ -112,14 +112,14 @@ public:
const std::vector< sal_Int32 > & GetPagesToPrint() const { return m_aPagesToPrint; }
// used for 'normal' printing with post-its
- // - if the vector entry will be NULL then the respective page to be printed is from
+ // - if the map entry will be NULL then the respective page to be printed is from
// the document. In that case use the value from GetPagesToPrint at the same index to
// get the phys. page number to be printed, and then retrieve the start frame to use
// from GetValidStartFrms.
// - If the entry is not NULL it is the start frame of the page from the post-it document
// that is to be printed
- std::vector< const SwPageFrm * > & GetPostItStartFrame() { return m_aPostItStartFrame; }
- const std::vector< const SwPageFrm * > & GetPostItStartFrame() const { return m_aPostItStartFrame; }
+ std::vector< const SwPageFrm * > & GetPostItStartFrames() { return m_aPostItStartFrames; }
+ const std::vector< const SwPageFrm * > & GetPostItStartFrames() const { return m_aPostItStartFrames; }
// used for prospect printing only
PagePairsVec_t & GetPagePairsForProspectPrinting() { return m_aPagePairs; }