summaryrefslogtreecommitdiffstats
path: root/examples/dialogs/licensewizard
diff options
context:
space:
mode:
Diffstat (limited to 'examples/dialogs/licensewizard')
-rw-r--r--examples/dialogs/licensewizard/licensewizard.cpp6
-rw-r--r--examples/dialogs/licensewizard/licensewizard.pro1
2 files changed, 6 insertions, 1 deletions
diff --git a/examples/dialogs/licensewizard/licensewizard.cpp b/examples/dialogs/licensewizard/licensewizard.cpp
index 19a0c069e4..1c9587161b 100644
--- a/examples/dialogs/licensewizard/licensewizard.cpp
+++ b/examples/dialogs/licensewizard/licensewizard.cpp
@@ -38,7 +38,9 @@
**
****************************************************************************/
-#include <QtGui>
+#include <QtWidgets>
+#include <QPrinter>
+#include <QPrintDialog>
#include "licensewizard.h"
@@ -350,10 +352,12 @@ void ConclusionPage::setVisible(bool visible)
void ConclusionPage::printButtonClicked()
{
+#ifndef QT_NO_PRINTER
QPrinter printer;
QPrintDialog dialog(&printer, this);
if (dialog.exec())
QMessageBox::warning(this, tr("Print License"),
tr("As an environmentally friendly measure, the "
"license text will not actually be printed."));
+#endif
}
diff --git a/examples/dialogs/licensewizard/licensewizard.pro b/examples/dialogs/licensewizard/licensewizard.pro
index 4c43e7ae91..20b533644e 100644
--- a/examples/dialogs/licensewizard/licensewizard.pro
+++ b/examples/dialogs/licensewizard/licensewizard.pro
@@ -10,6 +10,7 @@ sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/dialogs/licensewizard
INSTALLS += target sources
symbian: CONFIG += qt_example
+QT += widgets printsupport
maemo5: CONFIG += qt_example
symbian: warning(This example might not fully work on Symbian platform)
maemo5: warning(This example might not fully work on Maemo platform)