summaryrefslogtreecommitdiffstats
path: root/kfilereplace/kfilereplacepart.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kfilereplace/kfilereplacepart.cpp')
-rw-r--r--kfilereplace/kfilereplacepart.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kfilereplace/kfilereplacepart.cpp b/kfilereplace/kfilereplacepart.cpp
index 8d24a84c..49730efa 100644
--- a/kfilereplace/kfilereplacepart.cpp
+++ b/kfilereplace/kfilereplacepart.cpp
@@ -65,7 +65,7 @@ KFileReplacePart::KFileReplacePart(TQWidget* parentWidget, const char* , TQObjec
setInstance(FileReplaceFactory::instance());
TDEGlobal::locale()->insertCatalogue("kfilereplace");
m_parentWidget = parentWidget;
- m_config = new KConfig("kfilereplacerc");
+ m_config = new TDEConfig("kfilereplacerc");
m_aboutDlg = 0;
m_stop = false;
m_optionMask = TQDir::Files;
@@ -370,7 +370,7 @@ void KFileReplacePart::slotOpenRecentStringFile(const KURL& urlFile)
TQString fileName;
// Downloads file if need (if url is "http://...")
- if (!(KIO::NetAccess::download(urlFile, fileName, 0)))
+ if (!(TDEIO::NetAccess::download(urlFile, fileName, 0)))
return;
// Checks it's not a directory
@@ -1050,7 +1050,7 @@ void KFileReplacePart::replaceAndBackup(const TQString& currentDir, const TQStri
{
if(atLeastOneStringFound)
{
- KIO::NetAccess::file_copy(KURL::fromPathOrURL(oldPathString), KURL::fromPathOrURL(oldPathString + backupExtension), -1, true);
+ TDEIO::NetAccess::file_copy(KURL::fromPathOrURL(oldPathString), KURL::fromPathOrURL(oldPathString + backupExtension), -1, true);
}
}