summaryrefslogtreecommitdiffstats
path: root/examples/network
diff options
context:
space:
mode:
authorMarkus Goetz <Markus.Goetz@nokia.com>2009-08-24 15:05:41 +0200
committerMarkus Goetz <Markus.Goetz@nokia.com>2009-08-24 15:05:41 +0200
commita70b513ee0d56016c5ed3e0709d4f994c0881baf (patch)
treeb33f4ab345a2d622240c0babf86e6662a319aacb /examples/network
parentd09a2d662080e1b1d2c53cc64a42bb5fa7e63745 (diff)
Examples: Warn about usage of QHttp
This is an intermediate solution until the examples have been ported to using QNetworkAccessManager. Reviewed-by: TrustMe
Diffstat (limited to 'examples/network')
-rw-r--r--examples/network/http/main.cpp1
-rw-r--r--examples/network/torrent/main.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/examples/network/http/main.cpp b/examples/network/http/main.cpp
index f1b7cda6e3..6d10fad181 100644
--- a/examples/network/http/main.cpp
+++ b/examples/network/http/main.cpp
@@ -46,6 +46,7 @@
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
+ qWarning("The usage of QHttp is not recommended anymore, please use QNetworkAccessManager.");
HttpWindow httpWin;
httpWin.show();
return httpWin.exec();
diff --git a/examples/network/torrent/main.cpp b/examples/network/torrent/main.cpp
index e2ecacfaf5..1b66d0e9f5 100644
--- a/examples/network/torrent/main.cpp
+++ b/examples/network/torrent/main.cpp
@@ -46,6 +46,7 @@
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
+ qWarning("The usage of QHttp is not recommended anymore, please use QNetworkAccessManager.");
qsrand(QTime(0,0,0).secsTo(QTime::currentTime()));
Q_INIT_RESOURCE(icons);