summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/cocoa/qcocoaprintdevice.mm
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/plugins/platforms/cocoa/qcocoaprintdevice.mm
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/plugins/platforms/cocoa/qcocoaprintdevice.mm')
-rw-r--r--src/plugins/platforms/cocoa/qcocoaprintdevice.mm4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/platforms/cocoa/qcocoaprintdevice.mm b/src/plugins/platforms/cocoa/qcocoaprintdevice.mm
index d8b01ec07f..3061e84470 100644
--- a/src/plugins/platforms/cocoa/qcocoaprintdevice.mm
+++ b/src/plugins/platforms/cocoa/qcocoaprintdevice.mm
@@ -46,6 +46,8 @@
QT_BEGIN_NAMESPACE
+#ifndef QT_NO_PRINTER
+
static QPrint::DuplexMode macToDuplexMode(const PMDuplexMode &mode)
{
if (mode == kPMDuplexTumble)
@@ -495,4 +497,6 @@ PMPaper QCocoaPrintDevice::macPaper(const QPageSize &pageSize) const
return paper;
}
+#endif // QT_NO_PRINTER
+
QT_END_NAMESPACE