summaryrefslogtreecommitdiffstats
path: root/src/printsupport/kernel/qprintdevice.cpp
diff options
context:
space:
mode:
authorJohn Layt <jlayt@kde.org>2014-03-13 20:24:16 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-17 13:46:26 +0100
commit833a43d56c644b2201643b1e7593b0ee86d0d258 (patch)
tree9b41ec276f7a3a1fb6352c493e774597276a8321 /src/printsupport/kernel/qprintdevice.cpp
parent69e9b12001be08fe2b3f2c2def0ca3468d83b675 (diff)
QtPrintSupport - Fix QT_NO_PRINTER build
Fix the QT_NO_PRINTER build for issues that have accumulated over last few months, and in the new changes already approved. Change-Id: I9aed21dee861837fd1a68a96692c873a4f5be293 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/printsupport/kernel/qprintdevice.cpp')
-rw-r--r--src/printsupport/kernel/qprintdevice.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/printsupport/kernel/qprintdevice.cpp b/src/printsupport/kernel/qprintdevice.cpp
index c4ba12e0b0..eb0af455ee 100644
--- a/src/printsupport/kernel/qprintdevice.cpp
+++ b/src/printsupport/kernel/qprintdevice.cpp
@@ -44,6 +44,8 @@
QT_BEGIN_NAMESPACE
+#ifndef QT_NO_PRINTER
+
QPrintDevice::QPrintDevice()
: d(new QPlatformPrintDevice())
{
@@ -248,4 +250,6 @@ QList<QMimeType> QPrintDevice::supportedMimeTypes() const
return isValid() ? d->supportedMimeTypes() : QList<QMimeType>();
}
+#endif // QT_NO_PRINTER
+
QT_END_NAMESPACE