summaryrefslogtreecommitdiffstats
path: root/kppp/providerdb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kppp/providerdb.cpp')
-rw-r--r--kppp/providerdb.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/kppp/providerdb.cpp b/kppp/providerdb.cpp
index d88fbefb..508b5f5f 100644
--- a/kppp/providerdb.cpp
+++ b/kppp/providerdb.cpp
@@ -83,10 +83,10 @@ ProviderDB::ProviderDB(TQWidget *parent) :
setFinish(page9, true);
setFinishEnabled(page9, true);
- connect((const TQObject *)nextButton(), TQT_SIGNAL(clicked()),
- this, TQT_SLOT(pageSelected()));
- connect((const TQObject *)backButton(), TQT_SIGNAL(clicked()),
- this, TQT_SLOT(pageSelected()));
+ connect((const TQObject *)nextButton(), TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(pageSelected()));
+ connect((const TQObject *)backButton(), TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(pageSelected()));
// resize(minimumSize());
adjustSize();
@@ -198,8 +198,8 @@ PDB_Country::PDB_Country(TQWidget *parent) : TQWidget(parent) {
l1->addStretch(1);
lb = new TQListBox(this);
- connect(lb, TQT_SIGNAL(highlighted(int)),
- this, TQT_SLOT(selectionChanged(int)));
+ connect(lb, TQ_SIGNAL(highlighted(int)),
+ this, TQ_SLOT(selectionChanged(int)));
lb->setMinimumSize(220, 100);
l1->addWidget(lb, 2);
l1->addStretch(1);
@@ -274,8 +274,8 @@ PDB_Provider::PDB_Provider(TQWidget *parent) : TQWidget(parent) {
l1->addStretch(1);
lb = new TQListBox(this);
- connect(lb, TQT_SIGNAL(highlighted(int)),
- this, TQT_SLOT(selectionChanged(int)));
+ connect(lb, TQ_SIGNAL(highlighted(int)),
+ this, TQ_SLOT(selectionChanged(int)));
lb->setMinimumSize(220, 100);
l1->addWidget(lb, 2);
l1->addStretch(1);
@@ -350,13 +350,13 @@ PDB_UserInfo::PDB_UserInfo(TQWidget *parent) : TQWidget(parent) {
l = new TQLabel(i18n("Password:"), this);
l1->addWidget(l, 1, 0);
_username = newLineEdit(24, this);
- connect(_username, TQT_SIGNAL(textChanged(const TQString &)),
- this, TQT_SLOT(textChanged(const TQString &)));
+ connect(_username, TQ_SIGNAL(textChanged(const TQString &)),
+ this, TQ_SLOT(textChanged(const TQString &)));
l1->addWidget(_username, 0, 1);
_password = newLineEdit(24, this);
_password->setEchoMode(TQLineEdit::Password);
- connect(_password, TQT_SIGNAL(textChanged(const TQString &)),
- this, TQT_SLOT(textChanged(const TQString &)));
+ connect(_password, TQ_SIGNAL(textChanged(const TQString &)),
+ this, TQ_SLOT(textChanged(const TQString &)));
l1->addWidget(_password, 1, 1);
tl->activate();
}