diff options
Diffstat (limited to 'kget/transferlist.cpp')
-rw-r--r-- | kget/transferlist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kget/transferlist.cpp b/kget/transferlist.cpp index 17f0b743..b07c0270 100644 --- a/kget/transferlist.cpp +++ b/kget/transferlist.cpp @@ -31,7 +31,7 @@ #include <tdelocale.h> #include <tdeconfig.h> #include <tdemessagebox.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <tdeio/netaccess.h> #include "transfer.h" @@ -230,7 +230,7 @@ void TransferList::readTransfers(const KURL& file) TQString tmpFile; if (TDEIO::NetAccess::download(file, tmpFile, (TQWidget*)parent())) { - KSimpleConfig config(tmpFile); + TDESimpleConfig config(tmpFile); config.setGroup("Common"); int num = config.readNumEntry("Count", 0); @@ -265,7 +265,7 @@ void TransferList::writeTransfers(const TQString& file) { sDebug << ">>>>Entering with file =" << file << endl; - KSimpleConfig config(file); + TDESimpleConfig config(file); int num = childCount(); config.setGroup("Common"); |