summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQt4iOS <ian@mediator-software.com>2012-03-24 14:49:52 +0000
committerQt by Nokia <qt-info@nokia.com>2012-03-27 19:26:45 +0200
commitc95fc3c3b1fdad5e75fe1c093f41fd54f8828ca4 (patch)
treee377b97f63f85c1c7038caf4e864327b53d54cbf /src
parentf1963324d26e825cd4cce3f666702933b86d92c8 (diff)
Fix compilation when QT_NO_PRINTDIALOG is defined.
Some code intended to be disabled when QT_NO_PRINTDIALOG is defined was being compiled due to misplaced #ifdef and/or #endif. Change-Id: Ic8587872fae03cac2895e54e34f8f20cb575d92b Reviewed-by: John Layt <jlayt@kde.org>
Diffstat (limited to 'src')
-rw-r--r--src/printsupport/dialogs/qpagesetupdialog_mac.mm4
-rw-r--r--src/printsupport/dialogs/qprintdialog_unix.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/printsupport/dialogs/qpagesetupdialog_mac.mm b/src/printsupport/dialogs/qpagesetupdialog_mac.mm
index 6e4469e387..512c4dc2a6 100644
--- a/src/printsupport/dialogs/qpagesetupdialog_mac.mm
+++ b/src/printsupport/dialogs/qpagesetupdialog_mac.mm
@@ -39,6 +39,8 @@
**
****************************************************************************/
+#ifndef QT_NO_PRINTDIALOG
+
#include <Cocoa/Cocoa.h>
#include "qpagesetupdialog.h"
@@ -47,8 +49,6 @@
#include <QtGui/qplatformnativeinterface_qpa.h>
#include <QtPrintSupport/qprintengine.h>
-#ifndef QT_NO_PRINTDIALOG
-
QT_USE_NAMESPACE
@class QT_MANGLE_NAMESPACE(QCocoaPageLayoutDelegate);
diff --git a/src/printsupport/dialogs/qprintdialog_unix.cpp b/src/printsupport/dialogs/qprintdialog_unix.cpp
index 5c5ca77a72..f3f7eea988 100644
--- a/src/printsupport/dialogs/qprintdialog_unix.cpp
+++ b/src/printsupport/dialogs/qprintdialog_unix.cpp
@@ -178,7 +178,6 @@ private:
const ppd_file_t* cupsPPD;
#endif
};
-#endif
#if !defined(QT_NO_CUPS) && !defined(QT_NO_LIBRARY)
class QOptionTreeItem
@@ -1245,7 +1244,8 @@ void QPPDOptionsEditor::cbChanged(int)
*/
}
-#endif
+#endif // !defined(QT_NO_CUPS) && !defined(QT_NO_LIBRARY)
+#endif // defined (Q_OS_UNIX)
QT_END_NAMESPACE