From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- wizards/exchangewizard.cpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'wizards/exchangewizard.cpp') diff --git a/wizards/exchangewizard.cpp b/wizards/exchangewizard.cpp index e95480c1..d4aae80a 100644 --- a/wizards/exchangewizard.cpp +++ b/wizards/exchangewizard.cpp @@ -30,10 +30,10 @@ #include #include -#include -#include -#include -#include +#include +#include +#include +#include #if 0 @@ -122,8 +122,8 @@ class CreateExchangeKabcResource : public KConfigPropagator::Change m.readConfig(); KURL url( exchangeUrl() ); - QString user( ExchangeConfig::self()->user() ); - QString password( ExchangeConfig::self()->password() ); + TQString user( ExchangeConfig::self()->user() ); + TQString password( ExchangeConfig::self()->password() ); KABC::ResourceExchange *r = new KABC::ResourceExchange( url, user, password ); r->setResourceName( i18n("Exchange Server") ); @@ -225,35 +225,35 @@ class ExchangePropagator : public KConfigPropagator ExchangeWizard::ExchangeWizard() : KConfigWizard( new ExchangePropagator ) { - QFrame *page = createWizardPage( i18n("Microsoft Exchange Server") ); - QGridLayout *topLayout = new QGridLayout( page ); + TQFrame *page = createWizardPage( i18n("Microsoft Exchange Server") ); + TQGridLayout *topLayout = new TQGridLayout( page ); topLayout->setSpacing( spacingHint() ); - QLabel *label = new QLabel( i18n("Server name:"), page ); + TQLabel *label = new TQLabel( i18n("Server name:"), page ); topLayout->addWidget( label, 0, 0 ); mServerEdit = new KLineEdit( page ); topLayout->addWidget( mServerEdit, 0, 1 ); - label = new QLabel( i18n("Port:"), page ); + label = new TQLabel( i18n("Port:"), page ); topLayout->addWidget( label, 1, 0 ); - mPortEdit = new QSpinBox( 1, 65536, 1, page ); + mPortEdit = new TQSpinBox( 1, 65536, 1, page ); topLayout->addWidget( mPortEdit, 1, 1 ); - label = new QLabel( i18n("User name:"), page ); + label = new TQLabel( i18n("User name:"), page ); topLayout->addWidget( label, 2, 0 ); mUserEdit = new KLineEdit( page ); topLayout->addWidget( mUserEdit, 2, 1 ); - label = new QLabel( i18n("Password:"), page ); + label = new TQLabel( i18n("Password:"), page ); topLayout->addWidget( label, 3, 0 ); mPasswordEdit = new KLineEdit( page ); mPasswordEdit->setEchoMode( KLineEdit::Password ); topLayout->addWidget( mPasswordEdit, 3, 1 ); - mSavePasswordCheck = new QCheckBox( i18n("Save password"), page ); + mSavePasswordCheck = new TQCheckBox( i18n("Save password"), page ); topLayout->addMultiCellWidget( mSavePasswordCheck, 4, 4, 0, 1 ); - mSecureCheck = new QCheckBox( i18n("Encrypt communication with server"), + mSecureCheck = new TQCheckBox( i18n("Encrypt communication with server"), page ); topLayout->addMultiCellWidget( mSecureCheck, 5, 5, 0, 1 ); -- cgit v1.2.3