summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2017-06-09 17:01:20 +0200
committerKai Koehne <kai.koehne@qt.io>2017-06-13 06:32:50 +0000
commitc2d6fc8d06447c4579811085f3c255cd30523ca7 (patch)
tree199778358aa1441220b06d71c1ecad94d0610ccd /examples
parent05f97e2c14ed667f015809adedcb4628de7206f5 (diff)
Fix build of html2pdf example
Fixes build issue on Windows: html2pdf.cpp(88): error C2027: use of undefined type 'QtNamespace::QTextStream' Change-Id: Idf43d826f72a6dd06245c3d072b6c6ea58ea2ae6 Reviewed-by: Jüri Valdmann <juri.valdmann@qt.io> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/webenginewidgets/html2pdf/html2pdf.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/webenginewidgets/html2pdf/html2pdf.cpp b/examples/webenginewidgets/html2pdf/html2pdf.cpp
index 44e692a22..b56749878 100644
--- a/examples/webenginewidgets/html2pdf/html2pdf.cpp
+++ b/examples/webenginewidgets/html2pdf/html2pdf.cpp
@@ -41,6 +41,7 @@
#include <QApplication>
#include <QCommandLineParser>
#include <QFile>
+#include <QTextStream>
#include <QWebEnginePage>
#include <functional>