diff options
Diffstat (limited to 'kmail/recipientspicker.cpp')
-rw-r--r-- | kmail/recipientspicker.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmail/recipientspicker.cpp b/kmail/recipientspicker.cpp index de577a7cc..0d938bde2 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() ); |