From c663b6440964f6ac48027143ac9e63298991f9d0 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:33:34 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kioslave/system/kio_system.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'kioslave/system/kio_system.cpp') 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 #include -#include +#include #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 ) -- cgit v1.2.3