summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2009-08-12 05:26:23 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2009-08-12 05:26:23 (GMT)
commit168ebe84e7b7234a4f51e7b3b6ac4f14b6766c20 (patch)
tree8428f893886a05ef2d12d73d8e0aba57b902a96a /doc/src/snippets/code/src_network_kernel_qhostinfo.cpp
parent812b3940012f3c04fb79b8fa8c4ac64ff8051dd4 (diff)
downloadQt-168ebe84e7b7234a4f51e7b3b6ac4f14b6766c20.zip
Qt-168ebe84e7b7234a4f51e7b3b6ac4f14b6766c20.tar.gz
Qt-168ebe84e7b7234a4f51e7b3b6ac4f14b6766c20.tar.bz2
Update URL's to use new domain.
Reviewed-by: Trust Me
Diffstat (limited to 'doc/src/snippets/code/src_network_kernel_qhostinfo.cpp')
-rw-r--r--doc/src/snippets/code/src_network_kernel_qhostinfo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp b/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp
index e748f90..b96a777 100644
--- a/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp
+++ b/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp
@@ -1,6 +1,6 @@
//! [0]
-// To find the IP address of qtsoftware.com
-QHostInfo::lookupHost("qtsoftware.com",
+// To find the IP address of qt.nokia.com
+QHostInfo::lookupHost("qt.nokia.com",
this, SLOT(printResults(QHostInfo)));
// To find the host name for 4.2.2.1
@@ -10,7 +10,7 @@ QHostInfo::lookupHost("4.2.2.1",
//! [1]
-QHostInfo info = QHostInfo::fromName("qtsoftware.com");
+QHostInfo info = QHostInfo::fromName("qt.nokia.com");
//! [1]