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.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/quanta/dialogs/copyto.cpp b/quanta/dialogs/copyto.cpp
index 7a4c596d..9f66cb11 100644
--- a/quanta/dialogs/copyto.cpp
+++ b/quanta/dialogs/copyto.cpp
@@ -46,9 +46,9 @@ KURL CopyTo::copy(const KURL& urlToCopy, const KURL& destination)
targetDirURL.adjustPath(1);
bool doCopy = true;
- if (!TQExtFileInfo::exists(targetDirURL, false, 0L))
+ if (!QExtFileInfo::exists(targetDirURL, false, 0L))
{
- doCopy = TQExtFileInfo::createDir(targetDirURL, 0L);
+ doCopy = QExtFileInfo::createDir(targetDirURL, 0L);
}
KURL destURL;
@@ -93,9 +93,9 @@ KURL::List CopyTo::copy(const KURL::List& sourceList, const KURL& destination )
targetDirURL = destination;
}
bool doCopy = true;
- if (!TQExtFileInfo::exists(targetDirURL, false, 0L))
+ if (!QExtFileInfo::exists(targetDirURL, false, 0L))
{
- doCopy = TQExtFileInfo::createDir(targetDirURL, 0L);
+ doCopy = QExtFileInfo::createDir(targetDirURL, 0L);
}
KIO::UDSEntry entry;