summaryrefslogtreecommitdiffstats
path: root/src/secondaryrealmwizard/realmconfigpage.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 10:57:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 10:57:32 +0900
commitbb971b32dbc6b350dbb2bee490af9da36a2e2685 (patch)
tree67c8c40221013b1072005b0b3d275c95a4fec73d /src/secondaryrealmwizard/realmconfigpage.cpp
parent36f10e326bf0b81f999c5ae730453f526e902baa (diff)
downloadkcmldapcontroller-bb971b32dbc6b350dbb2bee490af9da36a2e2685.tar.gz
kcmldapcontroller-bb971b32dbc6b350dbb2bee490af9da36a2e2685.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/secondaryrealmwizard/realmconfigpage.cpp')
-rw-r--r--src/secondaryrealmwizard/realmconfigpage.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/secondaryrealmwizard/realmconfigpage.cpp b/src/secondaryrealmwizard/realmconfigpage.cpp
index 3deac8b..614491a 100644
--- a/src/secondaryrealmwizard/realmconfigpage.cpp
+++ b/src/secondaryrealmwizard/realmconfigpage.cpp
@@ -42,11 +42,11 @@ SecondaryRealmConfigPage::SecondaryRealmConfigPage(TQWidget *parent, const char
px_introSidebar->setPixmap(UserIcon("kcmldapcontroller_step1.png"));
- connect(txtRealmName, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(validateEntries()));
- connect(txtKDC, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(validateEntries()));
- connect(txtAdminServer, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(validateEntries()));
+ connect(txtRealmName, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(validateEntries()));
+ connect(txtKDC, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(validateEntries()));
+ connect(txtAdminServer, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(validateEntries()));
- connect(txtRealmName, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(realmNameChanged()));
+ connect(txtRealmName, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(realmNameChanged()));
m_parentWizard = dynamic_cast<KWizard*>(parent);
m_parentDialog = dynamic_cast<KDialogBase*>(parent);