summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src_network_kernel_qhostinfo.cpp
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-08-13 05:46:41 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-08-13 05:46:41 (GMT)
commit2fefb455e7a57f320b043bc4eeab7788a07e3779 (patch)
tree61ad8632d22cb79ec9c6cce3ca37e9fbdf7270b4 /doc/src/snippets/code/src_network_kernel_qhostinfo.cpp
parent9c93d9937ec14d7e00f23827a567a001878a2aab (diff)
parent89a54d6b853512398eb1622eba8f6fbc8794277b (diff)
downloadQt-2fefb455e7a57f320b043bc4eeab7788a07e3779.zip
Qt-2fefb455e7a57f320b043bc4eeab7788a07e3779.tar.gz
Qt-2fefb455e7a57f320b043bc4eeab7788a07e3779.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
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]