summaryrefslogtreecommitdiffstats
path: root/kbugbuster/backend/bugcache.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:57:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:57:53 +0900
commit854e5e9e1d5789d6981f560fc0d3059fa65dfb53 (patch)
treefb54332ef6ef38e471ed93322f6725ef2628bb42 /kbugbuster/backend/bugcache.h
parentfb63dae0e786f0bcf421bdff1d0bef70ba587f8b (diff)
downloadtdesdk-854e5e9e1d5789d6981f560fc0d3059fa65dfb53.tar.gz
tdesdk-854e5e9e1d5789d6981f560fc0d3059fa65dfb53.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kbugbuster/backend/bugcache.h')
-rw-r--r--kbugbuster/backend/bugcache.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kbugbuster/backend/bugcache.h b/kbugbuster/backend/bugcache.h
index bef22493..bb4753e1 100644
--- a/kbugbuster/backend/bugcache.h
+++ b/kbugbuster/backend/bugcache.h
@@ -1,7 +1,7 @@
#ifndef BUGCACHE_H
#define BUGCACHE_H
-class KSimpleConfig;
+class TDESimpleConfig;
#include "package.h"
#include "bug.h"
@@ -31,14 +31,14 @@ class BugCache
private:
void init();
- void writePerson( KSimpleConfig *file, const TQString &key,
+ void writePerson( TDESimpleConfig *file, const TQString &key,
const Person &p );
- struct Person readPerson (KSimpleConfig *file, const TQString &key );
+ struct Person readPerson (TDESimpleConfig *file, const TQString &key );
TQString mId;
- KSimpleConfig *m_cachePackages;
- KSimpleConfig *m_cacheBugs;
+ TDESimpleConfig *m_cachePackages;
+ TDESimpleConfig *m_cacheBugs;
TQString mCachePackagesFileName;
TQString mCacheBugsFileName;