summaryrefslogtreecommitdiff
path: root/tests/auto/q3uridrag/tst_q3uridrag.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/q3uridrag/tst_q3uridrag.cpp')
-rw-r--r--tests/auto/q3uridrag/tst_q3uridrag.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/tests/auto/q3uridrag/tst_q3uridrag.cpp b/tests/auto/q3uridrag/tst_q3uridrag.cpp
index f445e1a469..d5b68150e0 100644
--- a/tests/auto/q3uridrag/tst_q3uridrag.cpp
+++ b/tests/auto/q3uridrag/tst_q3uridrag.cpp
@@ -34,7 +34,7 @@
** met: http://www.gnu.org/copyleft/gpl.html.
**
** If you are unsure which license is appropriate for your use, please
-** contact the sales department at http://www.qtsoftware.com/contact.
+** contact the sales department at http://qt.nokia.com/contact.
** $QT_END_LICENSE$
**
****************************************************************************/
@@ -109,14 +109,14 @@ void tst_Q3UriDrag::decodeLocalFiles_data()
#endif
QTest::newRow("multipleFilesWithAbsPaths") << multipleFilesWithAbsPaths << multipleFilesWithAbsPaths;
- QTest::newRow("nonLocalFile") << QStringList("http://www.trolltech.com") << QStringList();
+ QTest::newRow("nonLocalFile") << QStringList("http://qt.nokia.com") << QStringList();
QStringList mixOfLocalAndNonLocalFiles;
#ifdef Q_WS_WIN
- mixOfLocalAndNonLocalFiles << "http://www.trolltech.com" << "c:/main.cpp" << "ftp://doc.trolltech.com";
+ mixOfLocalAndNonLocalFiles << "http://qt.nokia.com" << "c:/main.cpp" << "ftp://qt.nokia.com/doc";
QTest::newRow("mixOfLocalAndNonLocalFiles") << mixOfLocalAndNonLocalFiles << QStringList("c:/main.cpp");
#else
- mixOfLocalAndNonLocalFiles << "http://www.trolltech.com" << "/main.cpp" << "ftp://doc.trolltech.com";
+ mixOfLocalAndNonLocalFiles << "http://qt.nokia.com" << "/main.cpp" << "ftp://qt.nokia.com/doc";
QTest::newRow("mixOfLocalAndNonLocalFiles") << mixOfLocalAndNonLocalFiles << QStringList("/main.cpp");
#endif
}
@@ -157,16 +157,16 @@ void tst_Q3UriDrag::decodeToUnicodeUris_data()
#endif
QTest::newRow("multipleFiles") << multipleFiles << multipleFilesUU;
- QTest::newRow("nonLocalUris") << QStringList("http://www.trolltech.com") << QStringList("http://www.trolltech.com");
+ QTest::newRow("nonLocalUris") << QStringList("http://qt.nokia.com") << QStringList("http://qt.nokia.com");
QStringList mixOfLocalAndNonLocalUris;
QStringList mixOfLocalAndNonLocalUrisUU;
#ifdef Q_WS_WIN
- mixOfLocalAndNonLocalUris << "http://www.trolltech.com" << "c:/with space main.cpp" << "ftp://doc.trolltech.com";
- mixOfLocalAndNonLocalUrisUU << "http://www.trolltech.com" << "c:/with space main.cpp" << "ftp://doc.trolltech.com";
+ mixOfLocalAndNonLocalUris << "http://qt.nokia.com" << "c:/with space main.cpp" << "ftp://qt.nokia.com/doc";
+ mixOfLocalAndNonLocalUrisUU << "http://qt.nokia.com" << "c:/with space main.cpp" << "ftp://qt.nokia.com/doc";
#else
- mixOfLocalAndNonLocalUris << "http://www.trolltech.com" << "/main.cpp" << "ftp://doc.trolltech.com";
- mixOfLocalAndNonLocalUrisUU << "http://www.trolltech.com" << "/main.cpp" << "ftp://doc.trolltech.com";
+ mixOfLocalAndNonLocalUris << "http://qt.nokia.com" << "/main.cpp" << "ftp://qt.nokia.com/doc";
+ mixOfLocalAndNonLocalUrisUU << "http://qt.nokia.com" << "/main.cpp" << "ftp://qt.nokia.com/doc";
#endif
QTest::newRow("mixOfLocalAndNonLocalUris") << mixOfLocalAndNonLocalUris << mixOfLocalAndNonLocalUrisUU;
}
@@ -177,7 +177,7 @@ void tst_Q3UriDrag::decodeToUnicodeUris()
//
// Possible AbsoluteURIs are:
//
- // http://www.trolltech.com
+ // http://qt.nokia.com
// c:/main.cpp
//
@@ -210,7 +210,7 @@ void tst_Q3UriDrag::uriToLocalFile_data()
QTest::newRow("fileSchemelocalFileWindowsNetworkPath") << QString("file://somehost/somefile") << QString("//somehost/somefile");
#endif
QTest::newRow("fileSchemelocalFileEncoding") << QString("file:///Fran%e7ois") << QString::fromUtf8("/François");
- QTest::newRow("nonLocalFile") << QString("http://www.trolltech.com") << QString();
+ QTest::newRow("nonLocalFile") << QString("http://qt.nokia.com") << QString();
}
void tst_Q3UriDrag::uriToLocalFile()