summaryrefslogtreecommitdiffstats
path: root/examples/xml
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/xml
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/xml')
-rw-r--r--examples/xml/rsslisting/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/xml/rsslisting/main.cpp b/examples/xml/rsslisting/main.cpp
index 122d34c655..0ba932f4b7 100644
--- a/examples/xml/rsslisting/main.cpp
+++ b/examples/xml/rsslisting/main.cpp
@@ -58,6 +58,7 @@ Provides the main function for the RSS news reader example.
int main(int argc, char **argv)
{
QApplication app(argc, argv);
+ qWarning("The usage of QHttp is not recommended anymore, please use QNetworkAccessManager.");
RSSListing *rsslisting = new RSSListing;
rsslisting->show();
return app.exec();