summaryrefslogtreecommitdiffstats
path: root/libtdepim/recentaddresses.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:37:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:37:21 -0600
commit86d8364ac704bdc8ad2dfcf52307d9626cfac567 (patch)
tree97d3ac2c2f60780d9a1de4f82caac7cb27534501 /libtdepim/recentaddresses.h
parenta9bde819f2b421dcc44741156e75eca4bb5fb4f4 (diff)
downloadtdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.tar.gz
tdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
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 8d649e812..08976a027 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;