summaryrefslogtreecommitdiffstats
path: root/examples/network/http
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2011-05-07 22:57:49 +0200
committerLars Knoll <lars.knoll@nokia.com>2011-05-07 22:57:49 +0200
commite510b6e4661f256a736b1eff42b4b7586acef788 (patch)
treee727e3df4ac98feb4fe6ef550ae39492c2843b66 /examples/network/http
parent9474f82f8a4ca4abfc349c17debd84f26148fc20 (diff)
include fixes
Fixed the include statements added QT+=widgets in examples/network to get them to compile. Will need something better than doing it manually.
Diffstat (limited to 'examples/network/http')
-rw-r--r--examples/network/http/http.pro2
-rw-r--r--examples/network/http/httpwindow.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/examples/network/http/http.pro b/examples/network/http/http.pro
index 74a8e49d90..57618b3137 100644
--- a/examples/network/http/http.pro
+++ b/examples/network/http/http.pro
@@ -1,3 +1,5 @@
+QT += widgets
+
HEADERS += httpwindow.h
SOURCES += httpwindow.cpp \
main.cpp
diff --git a/examples/network/http/httpwindow.cpp b/examples/network/http/httpwindow.cpp
index 874994ab92..1eceb4927e 100644
--- a/examples/network/http/httpwindow.cpp
+++ b/examples/network/http/httpwindow.cpp
@@ -38,7 +38,7 @@
**
****************************************************************************/
-#include <QtGui>
+#include <QtWidgets>
#include <QtNetwork>
#include "httpwindow.h"