summaryrefslogtreecommitdiffstats
path: root/src/bondrealmpage.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-02 10:57:21 +0900
committerMichele Calgaro <[email protected]>2024-01-02 21:14:39 +0900
commitdf2cc5bedbdc04e67b119952444ffdbfb18ff0fc (patch)
tree87f689067133d64684ff7448e21a5142c7b57dbb /src/bondrealmpage.cpp
parent2fcf4275bdee9ddcbe716d3bd5d7a594566cca2f (diff)
downloadkcmldap-df2cc5bedbdc04e67b119952444ffdbfb18ff0fc.tar.gz
kcmldap-df2cc5bedbdc04e67b119952444ffdbfb18ff0fc.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 2b2d9c3becc27b93cc739dae3ac9b23a53f2bb82)
Diffstat (limited to 'src/bondrealmpage.cpp')
-rw-r--r--src/bondrealmpage.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bondrealmpage.cpp b/src/bondrealmpage.cpp
index fd56209..698998e 100644
--- a/src/bondrealmpage.cpp
+++ b/src/bondrealmpage.cpp
@@ -42,11 +42,11 @@ BondRealmPage::BondRealmPage(TQWidget *parent, const char *name ) : BondRealmPag
px_introSidebar->setPixmap(UserIcon("kcmldapbonding_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);