diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kioslave/system/kio_system.cpp | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kioslave/system/kio_system.cpp')
-rw-r--r-- | kioslave/system/kio_system.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kioslave/system/kio_system.cpp b/kioslave/system/kio_system.cpp index c2683add8..1f86a90d1 100644 --- a/kioslave/system/kio_system.cpp +++ b/kioslave/system/kio_system.cpp @@ -25,7 +25,7 @@ #include <kcmdlineargs.h> #include <dcopclient.h> -#include <qeventloop.h> +#include <tqeventloop.h> #include "kio_system.h" @@ -57,8 +57,8 @@ extern "C" { } -SystemProtocol::SystemProtocol(const QCString &protocol, - const QCString &pool, const QCString &app) +SystemProtocol::SystemProtocol(const TQCString &protocol, + const TQCString &pool, const TQCString &app) : ForwardingSlaveBase(protocol, pool, app) { } @@ -69,7 +69,7 @@ SystemProtocol::~SystemProtocol() bool SystemProtocol::rewriteURL(const KURL &url, KURL &newUrl) { - QString name, path; + TQString name, path; if ( !m_impl.parseURL(url, name, path) ) { @@ -91,7 +91,7 @@ void SystemProtocol::stat(const KURL &url) { kdDebug() << "SystemProtocol::stat: " << url << endl; - QString path = url.path(); + TQString path = url.path(); if ( path.isEmpty() || path == "/" ) { // The root is "virtual" - it's not a single physical directory @@ -102,7 +102,7 @@ void SystemProtocol::stat(const KURL &url) return; } - QString name; + TQString name; bool ok = m_impl.parseURL(url, name, path); if ( !ok ) @@ -141,7 +141,7 @@ void SystemProtocol::listDir(const KURL &url) return; } - QString name, path; + TQString name, path; bool ok = m_impl.parseURL(url, name, path); if ( !ok ) |