summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorLeonard Lee <leonard.lee@digia.com>2013-06-26 10:59:38 (GMT)
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-07-26 09:27:35 (GMT)
commitbcb784c6aeb3778f8f40871b09dfc8b7aacfbaa1 (patch)
tree753f35de00e8d0f01d7ed8ddecca143acfeb4cd5 /examples
parentdd72ced367dbbdd5b7c775262ff2555debe69145 (diff)
downloadQt-bcb784c6aeb3778f8f40871b09dfc8b7aacfbaa1.zip
Qt-bcb784c6aeb3778f8f40871b09dfc8b7aacfbaa1.tar.gz
Qt-bcb784c6aeb3778f8f40871b09dfc8b7aacfbaa1.tar.bz2
Change default URL of http example to Qt Project page.
The default URL changed to http[s]://qt-project.org site. This example referred to http[s]://qt.nokia.com site earlier. Change-Id: I356e8f85f5cb07dc619b0e5eb1da857f8a9b6986 (cherry-picked from qtbase/adc5626f4fdeed30634a950bdaa2404d5e98a4de) Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.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 101c460..625a1ad 100644
--- a/examples/network/http/httpwindow.cpp
+++ b/examples/network/http/httpwindow.cpp
@@ -52,9 +52,9 @@ HttpWindow::HttpWindow(QWidget *parent)
#endif
{
#ifndef QT_NO_OPENSSL
- 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:"));