diff options
author | Shane Kearns <shane.kearns@sosco.com> | 2009-08-14 08:08:30 (GMT) |
---|---|---|
committer | Shane Kearns <shane.kearns@sosco.com> | 2009-08-14 08:08:30 (GMT) |
commit | 0b2ee937495f2746816676d094be42b674eed900 (patch) | |
tree | 2bd907157ac544ae12085526bfa7693ec8f0026a /doc/src/snippets/code/src_network_kernel_qhostinfo.cpp | |
parent | 03330a4a6b4ebf0860f722b041185fb3ae469d3d (diff) | |
parent | 8785117eea4bbaa9ec846d7b8dd51219c41bd570 (diff) | |
download | Qt-0b2ee937495f2746816676d094be42b674eed900.zip Qt-0b2ee937495f2746816676d094be42b674eed900.tar.gz Qt-0b2ee937495f2746816676d094be42b674eed900.tar.bz2 |
Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt-s60-public
Diffstat (limited to 'doc/src/snippets/code/src_network_kernel_qhostinfo.cpp')
-rw-r--r-- | doc/src/snippets/code/src_network_kernel_qhostinfo.cpp | 6 |
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] |