summaryrefslogtreecommitdiffstats
path: root/knode/knnntpaccount.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knode/knnntpaccount.cpp')
-rw-r--r--knode/knnntpaccount.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/knode/knnntpaccount.cpp b/knode/knnntpaccount.cpp
index ba1657c0..77ee6ef3 100644
--- a/knode/knnntpaccount.cpp
+++ b/knode/knnntpaccount.cpp
@@ -12,8 +12,8 @@
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US
*/
-#include <ksimpleconfig.h>
-#include <kstandarddirs.h>
+#include <tdesimpleconfig.h>
+#include <tdestandarddirs.h>
#include <kdebug.h>
#include "utilities.h"
@@ -46,7 +46,7 @@ void KNNntpAccountIntervalChecking::installTimer()
if(!t_imer)
{
t_imer = new TQTimer();
- connect(t_imer,TQT_SIGNAL(timeout()),this,TQT_SLOT(slotCheckNews()));
+ connect(t_imer,TQ_SIGNAL(timeout()),this,TQ_SLOT(slotCheckNews()));
}
else
{
@@ -92,7 +92,7 @@ KNNntpAccount::~KNNntpAccount()
// tries to read information, returns false if it fails to do so
bool KNNntpAccount::readInfo(const TQString &confPath)
{
- KSimpleConfig conf(confPath);
+ TDESimpleConfig conf(confPath);
n_ame = conf.readEntry("name");
//u_nsentCount = conf.readNumEntry("unsentCnt", 0);
@@ -130,7 +130,7 @@ void KNNntpAccount::saveInfo()
if (dir.isNull())
return;
- KSimpleConfig conf(dir+"info");
+ TDESimpleConfig conf(dir+"info");
conf.writeEntry("name", n_ame);
//conf.writeEntry("unsentCnt", u_nsentCount);
@@ -167,7 +167,7 @@ void KNNntpAccount::saveInfo()
TQString dir(path());
if (dir.isNull())
return;
- KSimpleConfig conf(dir+"info");
+ TDESimpleConfig conf(dir+"info");
conf.writeEntry("unsentCnt", u_nsentCount);
}*/