summaryrefslogtreecommitdiff
path: root/qt
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2008-09-06 15:46:12 +0200
committerAlbert Astals Cid <aacid@kde.org>2008-09-06 15:46:12 +0200
commitafa26d5c9ac9feb61aad30eb65dc00c9854d7f2e (patch)
tree35cd790e6d80a1187ec21a6ad4c23634ab2aa43d /qt
parentf5d1eb5eaabaf3ab4bb87b8b4b901bbf30b20b29 (diff)
we are printing so pass the print flag as true
Diffstat (limited to 'qt')
-rw-r--r--qt/poppler-document.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/poppler-document.cc b/qt/poppler-document.cc
index d87ebd42..c5282fc4 100644
--- a/qt/poppler-document.cc
+++ b/qt/poppler-document.cc
@@ -317,7 +317,7 @@ bool Document::print(const QString &file, QValueList<int> pageList, double hDPI,
if (psOut->isOk()) {
QValueList<int>::iterator it;
for (it = pageList.begin(); it != pageList.end(); ++it )
- data->doc.displayPage(psOut, *it, hDPI, vDPI, rotate, gFalse, gTrue, gFalse);
+ data->doc.displayPage(psOut, *it, hDPI, vDPI, rotate, gFalse, gTrue, gTrue);
delete psOut;
return true;