summaryrefslogtreecommitdiffstats
path: root/libtdepim/recentaddresses.h
diff options
context:
space:
mode:
Diffstat (limited to 'libtdepim/recentaddresses.h')
-rw-r--r--libtdepim/recentaddresses.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libtdepim/recentaddresses.h b/libtdepim/recentaddresses.h
index 8d649e81..08976a02 100644
--- a/libtdepim/recentaddresses.h
+++ b/libtdepim/recentaddresses.h
@@ -37,7 +37,7 @@
#include <tdepimmacros.h>
-class KConfig;
+class TDEConfig;
class KEditListBox;
namespace KRecentAddress {
@@ -65,7 +65,7 @@ public:
/**
* @returns the only possible instance of this class.
*/
- static RecentAddresses * self(KConfig *config = 0L);
+ static RecentAddresses * self(TDEConfig *config = 0L);
/*
* @return true if self() was called, i.e. a RecentAddresses instance exists
@@ -102,13 +102,13 @@ public:
* Loads the list of recently used addresses from the configfile.
* Automatically done on startup.
*/
- void load( KConfig * );
+ void load( TDEConfig * );
/**
* Saves the list of recently used addresses to the configfile.
* Make sure to call TDEGlobal::config()->sync() afterwards, to really save.
*/
- void save( KConfig * );
+ void save( TDEConfig * );
/**
* Removes all entries from the history.
@@ -116,7 +116,7 @@ public:
void clear();
private:
- RecentAddresses(KConfig *config = 0L);
+ RecentAddresses(TDEConfig *config = 0L);
KABC::Addressee::List m_addresseeList;