diff options
Diffstat (limited to 'korganizer/plugins/exchange/exchangeconfig.cpp')
-rw-r--r-- | korganizer/plugins/exchange/exchangeconfig.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/korganizer/plugins/exchange/exchangeconfig.cpp b/korganizer/plugins/exchange/exchangeconfig.cpp index 106fc867..2c398560 100644 --- a/korganizer/plugins/exchange/exchangeconfig.cpp +++ b/korganizer/plugins/exchange/exchangeconfig.cpp @@ -53,7 +53,7 @@ ExchangeConfig::ExchangeConfig( KPIM::ExchangeAccount* account, TQWidget* parent m_user = new KLineEdit( mAccount->account(), topFrame ); topLayout->addWidget( new TQLabel( i18n( "User:" ), topFrame ), 2, 0 ); topLayout->addWidget( m_user, 2, 1 ); - connect( m_user, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(slotUserChanged(const TQString&)) ); + connect( m_user, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(slotUserChanged(const TQString&)) ); m_password = new KLineEdit( mAccount->password(), topFrame ); topLayout->addWidget( new TQLabel( i18n( "Password:" ), topFrame ), 3, 0 ); @@ -62,7 +62,7 @@ ExchangeConfig::ExchangeConfig( KPIM::ExchangeAccount* account, TQWidget* parent m_autoMailbox = new TQCheckBox( i18n( "Determine mailbox automatically" ), topFrame ); topLayout->addMultiCellWidget( m_autoMailbox, 4, 4, 0, 1 ); - connect( m_autoMailbox, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(slotToggleAuto(bool)) ); + connect( m_autoMailbox, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(slotToggleAuto(bool)) ); m_mailbox= new KLineEdit( mAccount->mailbox(), topFrame ); topLayout->addWidget( new TQLabel( i18n( "Mailbox URL:" ), topFrame ), 5, 0 ); @@ -70,10 +70,10 @@ ExchangeConfig::ExchangeConfig( KPIM::ExchangeAccount* account, TQWidget* parent m_tryFindMailbox = new TQPushButton( "&Find", topFrame ); topLayout->addWidget( m_tryFindMailbox, 5, 2 ); - connect( m_tryFindMailbox, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotFindClicked()) ); + connect( m_tryFindMailbox, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotFindClicked()) ); - kapp->config()->setGroup( "Calendar/Exchange Plugin" ); - bool autoChecked = kapp->config()->readBoolEntry( "auto-mailbox", true ); + tdeApp->config()->setGroup( "Calendar/Exchange Plugin" ); + bool autoChecked = tdeApp->config()->readBoolEntry( "auto-mailbox", true ); m_autoMailbox->setChecked( autoChecked ); } @@ -116,8 +116,8 @@ void ExchangeConfig::slotOk() mAccount->setAccount( m_user->text() ); mAccount->setPassword( m_password->text() ); - kapp->config()->setGroup( "Calendar/Exchange Plugin" ); - kapp->config()->writeEntry( "auto-mailbox", m_autoMailbox->isChecked() ); + tdeApp->config()->setGroup( "Calendar/Exchange Plugin" ); + tdeApp->config()->writeEntry( "auto-mailbox", m_autoMailbox->isChecked() ); accept(); } |