summaryrefslogtreecommitdiffstats
path: root/kmail/recipientspicker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/recipientspicker.cpp')
-rw-r--r--kmail/recipientspicker.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmail/recipientspicker.cpp b/kmail/recipientspicker.cpp
index de577a7c..0d938bde 100644
--- a/kmail/recipientspicker.cpp
+++ b/kmail/recipientspicker.cpp
@@ -577,7 +577,7 @@ void RecipientsPicker::insertRecentAddresses()
{
RecipientsCollection *collection = new RecipientsCollection( i18n("Recent Addresses") );
- KConfig config( "kmailrc" );
+ TDEConfig config( "kmailrc" );
KABC::Addressee::List recents =
KRecentAddress::RecentAddresses::self( &config )->kabcAddresses();
@@ -810,7 +810,7 @@ void RecipientsPicker::keyPressEvent( TQKeyEvent *ev )
void RecipientsPicker::readConfig()
{
- KConfig *cfg = TDEGlobal::config();
+ TDEConfig *cfg = TDEGlobal::config();
cfg->setGroup( "RecipientsPicker" );
TQSize size = cfg->readSizeEntry( "Size" );
if ( !size.isEmpty() ) {
@@ -825,7 +825,7 @@ void RecipientsPicker::readConfig()
void RecipientsPicker::writeConfig()
{
- KConfig *cfg = TDEGlobal::config();
+ TDEConfig *cfg = TDEGlobal::config();
cfg->setGroup( "RecipientsPicker" );
cfg->writeEntry( "Size", size() );
cfg->writeEntry( "CurrentCollection", mCollectionCombo->currentItem() );