diff options
Diffstat (limited to 'kmail/accountwizard.cpp')
-rw-r--r-- | kmail/accountwizard.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmail/accountwizard.cpp b/kmail/accountwizard.cpp index 5ae16164b..89861527b 100644 --- a/kmail/accountwizard.cpp +++ b/kmail/accountwizard.cpp @@ -120,7 +120,7 @@ AccountWizard::AccountWizard( KMKernel *kernel, TQWidget *parent ) void AccountWizard::start( KMKernel *kernel, TQWidget *parent ) { - KConfigGroup wizardConfig( KMKernel::config(), "AccountWizard" ); + TDEConfigGroup wizardConfig( KMKernel::config(), "AccountWizard" ); if ( wizardConfig.readBoolEntry( "ShowOnStartup", true ) ) { AccountWizard wizard( kernel, parent ); @@ -367,7 +367,7 @@ void AccountWizard::accept() void AccountWizard::createTransport() { // create outgoing account - KConfigGroup general( KMKernel::config(), "General" ); + TDEConfigGroup general( KMKernel::config(), "General" ); uint numTransports = general.readNumEntry( "transports", 0 ); @@ -403,7 +403,7 @@ void AccountWizard::transportCreated() { mTransportInfoList.append( mTransportInfo ); - KConfigGroup general( KMKernel::config(), "General" ); + TDEConfigGroup general( KMKernel::config(), "General" ); general.writeEntry( "transports", mTransportInfoList.count() ); for ( uint i = 0 ; i < mTransportInfoList.count() ; i++ ) @@ -411,12 +411,12 @@ void AccountWizard::transportCreated() // No default transport? => set the first transport as the default if ( GlobalSettings::self()->defaultTransport().isEmpty() ) { - KConfigGroup general( KMKernel::config(), "General" ); + TDEConfigGroup general( KMKernel::config(), "General" ); if ( mTransportInfoList.count() > 0 ) { KMTransportInfo info; info.readConfig( 1 ); - KConfigGroup composer( KMKernel::config(), "Composer" ); + TDEConfigGroup composer( KMKernel::config(), "Composer" ); GlobalSettings::self()->setDefaultTransport( info.name ); GlobalSettings::self()->setCurrentTransport( info.name ); } |