diff options
Diffstat (limited to 'kio/tests/speed.cpp')
-rw-r--r-- | kio/tests/speed.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kio/tests/speed.cpp b/kio/tests/speed.cpp index 4b29e1815..d8ddae20a 100644 --- a/kio/tests/speed.cpp +++ b/kio/tests/speed.cpp @@ -87,7 +87,7 @@ int main(int argc, char **argv) { } else kdDebug() << mp << " is the mount point for device " << url.url() << endl; - mp = KIO::tqfindPathMountPoint(url.path()); + mp = KIO::findPathMountPoint(url.path()); if (mp.isEmpty()) { kdDebug() << "no mount point for path " << url.url() << " found\n"; } else @@ -95,7 +95,7 @@ int main(int argc, char **argv) { // SpeedTest test( url ); // app.exec(); - mp = KIO::tqfindPathMountPoint(url.path()); + mp = KIO::findPathMountPoint(url.path()); if (mp.isEmpty()) { kdDebug() << "no mount point for path " << url.url() << " found\n"; } else @@ -105,7 +105,7 @@ int main(int argc, char **argv) { url.setPath(TQDir::homeDirPath()); - mp = KIO::tqfindPathMountPoint(url.path()); + mp = KIO::findPathMountPoint(url.path()); if (mp.isEmpty()) { kdDebug() << "no mount point for path " << url.url() << " found\n"; } else @@ -113,7 +113,7 @@ int main(int argc, char **argv) { // SpeedTest test( url ); // app.exec(); - mp = KIO::tqfindPathMountPoint(url.path()); + mp = KIO::findPathMountPoint(url.path()); if (mp.isEmpty()) { kdDebug() << "no mount point for path " << url.url() << " found\n"; } else @@ -126,7 +126,7 @@ int main(int argc, char **argv) { else url = "file:" + TQDir::currentDirPath(); - mp = KIO::tqfindPathMountPoint(url.path()); + mp = KIO::findPathMountPoint(url.path()); if (mp.isEmpty()) { kdDebug() << "no mount point for path " << url.url() << " found\n"; } else |