diff options
Diffstat (limited to 'korn/accountmanager.cpp')
-rw-r--r-- | korn/accountmanager.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/korn/accountmanager.cpp b/korn/accountmanager.cpp index a791c53d4..477bab2ae 100644 --- a/korn/accountmanager.cpp +++ b/korn/accountmanager.cpp @@ -51,16 +51,16 @@ AccountManager::~AccountManager() delete _dropInfo; } -void AccountManager::readConfig( KConfig* config, const int index ) +void AccountManager::readConfig( TDEConfig* config, const int index ) { - KConfigGroup *masterGroup = new KConfigGroup( config, TQString( "korn-%1" ).arg( index ) ); + TDEConfigGroup *masterGroup = new TDEConfigGroup( config, TQString( "korn-%1" ).arg( index ) ); TQStringList dcop = masterGroup->readListEntry( "dcop", ',' ); - KConfigGroup *accountGroup; + TDEConfigGroup *accountGroup; int counter = 0; while( config->hasGroup( TQString( "korn-%1-%2" ).arg( index ).arg( counter ) ) ) { - accountGroup = new KConfigGroup( config, TQString( "korn-%1-%2" ).arg( index ).arg( counter ) ); + accountGroup = new TDEConfigGroup( config, TQString( "korn-%1-%2" ).arg( index ).arg( counter ) ); const Protocol *proto = Protocols::getProto( accountGroup->readEntry( "protocol" ) ); if( !proto ) @@ -139,7 +139,7 @@ void AccountManager::readConfig( KConfig* config, const int index ) setCount( totalMessages(), hasNewMessages() ); } -void AccountManager::writeConfig( KConfig* config, const int index ) +void AccountManager::writeConfig( TDEConfig* config, const int index ) { TQMap< KMailDrop*, Dropinfo* >::Iterator it; for( it = _dropInfo->begin(); it != _dropInfo->end(); ++it ) |