From 86d8364ac704bdc8ad2dfcf52307d9626cfac567 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 00:37:21 -0600 Subject: Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 --- kmail/accountwizard.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'kmail/accountwizard.cpp') 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 ); } -- cgit v1.2.1