summaryrefslogtreecommitdiffstats
path: root/kmail/accountwizard.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:37:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:37:21 -0600
commit86d8364ac704bdc8ad2dfcf52307d9626cfac567 (patch)
tree97d3ac2c2f60780d9a1de4f82caac7cb27534501 /kmail/accountwizard.cpp
parenta9bde819f2b421dcc44741156e75eca4bb5fb4f4 (diff)
downloadtdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.tar.gz
tdepim-86d8364ac704bdc8ad2dfcf52307d9626cfac567.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kmail/accountwizard.cpp')
-rw-r--r--kmail/accountwizard.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kmail/accountwizard.cpp b/kmail/accountwizard.cpp
index 5ae16164..89861527 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 );
}