summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJeremy Katz <jeremy.katz@nokia.com>2012-08-22 15:37:54 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-23 11:20:37 +0200
commitadc5626f4fdeed30634a950bdaa2404d5e98a4de (patch)
tree32c6ebfa65f0b954e0984e01104f451341ca24fa /examples
parentfc924ae47e73a5b41e274a723d8f7cdefe921c4f (diff)
change http example default URL to http[s]://qt-project.org
This example used to refer by default to qt.nokia.com. Change-Id: Iecb682d0deb6270da91baf26897d44b16b39d09e Reviewed-by: Shane Kearns <shane.kearns@accenture.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/network/http/httpwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/network/http/httpwindow.cpp b/examples/network/http/httpwindow.cpp
index c56a6fa53f..a6b5287236 100644
--- a/examples/network/http/httpwindow.cpp
+++ b/examples/network/http/httpwindow.cpp
@@ -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:"));