summaryrefslogtreecommitdiffstats
path: root/src/primaryrealmwizard/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 21:15:36 +0900
commite385027b347358911f4e1d982f8a6ac3a5b98fca (patch)
tree67c8c40221013b1072005b0b3d275c95a4fec73d /src/primaryrealmwizard/realmconfigpage.cpp
parent9e149d4b106e90d95bf88baaa2707bbf11a6fb93 (diff)
downloadkcmldapcontroller-e385027b347358911f4e1d982f8a6ac3a5b98fca.tar.gz
kcmldapcontroller-e385027b347358911f4e1d982f8a6ac3a5b98fca.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit bb971b32dbc6b350dbb2bee490af9da36a2e2685)
Diffstat (limited to 'src/primaryrealmwizard/realmconfigpage.cpp')
-rw-r--r--src/primaryrealmwizard/realmconfigpage.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/primaryrealmwizard/realmconfigpage.cpp b/src/primaryrealmwizard/realmconfigpage.cpp
index 39a91b3..c99afaa 100644
--- a/src/primaryrealmwizard/realmconfigpage.cpp
+++ b/src/primaryrealmwizard/realmconfigpage.cpp
@@ -42,11 +42,11 @@ PrimaryRealmConfigPage::PrimaryRealmConfigPage(TQWidget *parent, const char *nam
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);