change http example default URL to http[s]://qt-project.org
authorJeremy Katz <jeremy.katz@nokia.com>
Wed, 22 Aug 2012 13:37:54 +0000 (15:37 +0200)
committerQt by Nokia <qt-info@nokia.com>
Thu, 23 Aug 2012 09:20:37 +0000 (11:20 +0200)
This example used to refer by default to qt.nokia.com.

Change-Id: Iecb682d0deb6270da91baf26897d44b16b39d09e
Reviewed-by: Shane Kearns <shane.kearns@accenture.com>
examples/network/http/httpwindow.cpp

index c56a6fa..a6b5287 100644 (file)
@@ -48,9 +48,9 @@ HttpWindow::HttpWindow(QWidget *parent)
     : QDialog(parent)
 {
 #ifndef QT_NO_SSL
-    urlLineEdit = new QLineEdit("https://qt.nokia.com/");
+    urlLineEdit = new QLineEdit("https://qt-project.org/");
 #else
-    urlLineEdit = new QLineEdit("http://qt.nokia.com/");
+    urlLineEdit = new QLineEdit("http://qt-project.org/");
 #endif
 
     urlLabel = new QLabel(tr("&URL:"));