diff options
author | Jason McDonald <jason.mcdonald@nokia.com> | 2009-08-12 06:09:25 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2009-08-12 06:09:25 (GMT) |
commit | 96b6a3c9cd84dbd90bd1fac84a077c01062c5871 (patch) | |
tree | 27985ab4d9f2b8b309d0cf48bd3627a545e28938 /tests/auto/q3dns | |
parent | e6b6dfb42ea4b649b52df9d17628bfdf3f9d29e4 (diff) | |
download | Qt-96b6a3c9cd84dbd90bd1fac84a077c01062c5871.zip Qt-96b6a3c9cd84dbd90bd1fac84a077c01062c5871.tar.gz Qt-96b6a3c9cd84dbd90bd1fac84a077c01062c5871.tar.bz2 |
Update obsolete URL's in code and docs.
Reviewed-by: Trust Me
Diffstat (limited to 'tests/auto/q3dns')
-rw-r--r-- | tests/auto/q3dns/tst_q3dns.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/q3dns/tst_q3dns.cpp b/tests/auto/q3dns/tst_q3dns.cpp index ead4eff..222a1d7 100644 --- a/tests/auto/q3dns/tst_q3dns.cpp +++ b/tests/auto/q3dns/tst_q3dns.cpp @@ -113,7 +113,7 @@ void tst_Q3Dns::destructor() { QApplication a( argc, argv ); Q3Socket *s = new Q3Socket( &a ); - s->connectToHost( "ftp.trolltech.com", 21 ); + s->connectToHost( "ftp.qt.nokia.com", 21 ); return 0; } */ @@ -121,7 +121,7 @@ void tst_Q3Dns::destructor() char **v = 0; QCoreApplication a(c, v); Q3Socket *s = new Q3Socket(&a); - s->connectToHost("ftp.trolltech.com", 21); + s->connectToHost("ftp.qt.nokia.com", 21); // dummy verify since this test only makes shure that it does not crash QVERIFY( TRUE ); @@ -206,7 +206,7 @@ void tst_Q3Dns::simpleLookup() int c = 0; char **v = 0; QCoreApplication a(c, v); - Q3Dns dns("www.trolltech.com"); + Q3Dns dns("qt.nokia.com"); QSignalSpy spy(&dns, SIGNAL(resultsReady())); connect(&dns, SIGNAL(resultsReady()), this, SLOT(simpleLookupDone())); |