summaryrefslogtreecommitdiffstats
path: root/quanta/dialogs/copyto.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/dialogs/copyto.cpp')
-rw-r--r--quanta/dialogs/copyto.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/quanta/dialogs/copyto.cpp b/quanta/dialogs/copyto.cpp
index 429fa457..9f66cb11 100644
--- a/quanta/dialogs/copyto.cpp
+++ b/quanta/dialogs/copyto.cpp
@@ -63,10 +63,10 @@ KURL CopyTo::copy(const KURL& urlToCopy, const KURL& destination)
destURL.adjustPath(1);
KIO::CopyJob *job = KIO::copy(urlToCopy, destURL, true);
- connect( job, SIGNAL(result( KIO::Job *)),
- SLOT (slotResult( KIO::Job *)));
+ connect( job, TQT_SIGNAL(result( KIO::Job *)),
+ TQT_SLOT (slotResult( KIO::Job *)));
- QString path = destURL.path();
+ TQString path = destURL.path();
if (path != "." && path != "..")
m_destList.append(destURL);
}
@@ -101,7 +101,7 @@ KURL::List CopyTo::copy(const KURL::List& sourceList, const KURL& destination )
KIO::UDSEntry entry;
if (doCopy)
{
- QString path;
+ TQString path;
for (uint i = 0; i < sourceList.count(); i++)
{
KURL srcURL = sourceList[i];
@@ -117,8 +117,8 @@ KURL::List CopyTo::copy(const KURL::List& sourceList, const KURL& destination )
}
KIO::CopyJob *job = KIO::copy(sourceList, targetDirURL, true);
- connect( job, SIGNAL(result( KIO::Job *)),
- SLOT (slotResult( KIO::Job *)));
+ connect( job, TQT_SIGNAL(result( KIO::Job *)),
+ TQT_SLOT (slotResult( KIO::Job *)));
}
return m_destList;