summaryrefslogtreecommitdiffstats
path: root/src/core/pdfium_printing_wrapper_qt.cpp
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2016-11-15 14:52:37 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2016-11-17 08:35:51 +0000
commit80f0ec9375638b545043cf500e08ab786bc94c8c (patch)
tree842eba2d78dfb77b3ca6a5eb1c61e0230a7726b9 /src/core/pdfium_printing_wrapper_qt.cpp
parentac0ab4bc673927f562e4f905a0c20df8099dd479 (diff)
Build with Qt 5.6
Make minimal changes so QtWebEngineCore 5.8 still builds with Qt LTR. Change-Id: Iae3ae606b3457a6ca311ae174b3d2a331e9b20bc Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/core/pdfium_printing_wrapper_qt.cpp')
-rw-r--r--src/core/pdfium_printing_wrapper_qt.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/pdfium_printing_wrapper_qt.cpp b/src/core/pdfium_printing_wrapper_qt.cpp
index 165ac743f..fceb381af 100644
--- a/src/core/pdfium_printing_wrapper_qt.cpp
+++ b/src/core/pdfium_printing_wrapper_qt.cpp
@@ -139,7 +139,9 @@ PdfiumPrintingWrapperQt::PdfiumPrintingWrapperQt(const void *pdfData, size_t siz
bool PdfiumPrintingWrapperQt::printOnPrinter(QPrinter &printer)
{
if (!m_documentHandle || !m_pageCount) {
+#if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)
qWarning("Failure to print on printer %ls: invalid document.\n", qUtf16Printable(printer.printerName()));
+#endif
return false;
}
@@ -172,7 +174,9 @@ bool PdfiumPrintingWrapperQt::printOnPrinter(QPrinter &printer)
QPainter painter;
if (!painter.begin(&printer)) {
+#if QT_VERSION >= QT_VERSION_CHECK(5, 7, 0)
qWarning("Failure to print on printer %ls: Could not open printer for painting.\n", qUtf16Printable(printer.printerName()));
+#endif
return false;
}