summaryrefslogtreecommitdiffstats
path: root/wizards/exchangewizard.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /wizards/exchangewizard.cpp
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'wizards/exchangewizard.cpp')
-rw-r--r--wizards/exchangewizard.cpp30
1 files changed, 15 insertions, 15 deletions
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 <klineedit.h>
#include <klocale.h>
-#include <qlayout.h>
-#include <qcheckbox.h>
-#include <qlabel.h>
-#include <qspinbox.h>
+#include <tqlayout.h>
+#include <tqcheckbox.h>
+#include <tqlabel.h>
+#include <tqspinbox.h>
#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 );