summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 12:58:03 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 12:58:03 +0900
commit3828b7eb44c6b67e08d4569d62b42d65868a0155 (patch)
tree7bfc2060c6b21dcc98199f138483e061c90900a4
parent06bca4248bd6e01437080b33a8fc2d124018f4ca (diff)
downloadkgtk-qt3-3828b7eb.tar.gz
kgtk-qt3-3828b7eb.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--kdialogd3/kdialogd.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kdialogd3/kdialogd.cpp b/kdialogd3/kdialogd.cpp
index 8886e65..be6d556 100644
--- a/kdialogd3/kdialogd.cpp
+++ b/kdialogd3/kdialogd.cpp
@@ -173,7 +173,7 @@ KDialogD::KDialogD(TQObject *parent)
theirConfig=new TDEConfig("kdialogdrc", false, false);
connect(new TQSocketNotifier(itsFd, TQSocketNotifier::Read, this),
- TQT_SIGNAL(activated(int)), this, TQT_SLOT(newConnection()));
+ TQ_SIGNAL(activated(int)), this, TQ_SLOT(newConnection()));
#ifdef KDIALOGD_APP
if(theirConfig->hasGroup(CFG_TIMEOUT_GROUP))
@@ -187,7 +187,7 @@ KDialogD::KDialogD(TQObject *parent)
kdDebug() << "Timeout:" << itsTimeoutVal << endl;
if(itsTimeoutVal)
- connect(itsTimer=new TQTimer(this), TQT_SIGNAL(timeout()), this, TQT_SLOT(timeout()));
+ connect(itsTimer=new TQTimer(this), TQ_SIGNAL(timeout()), this, TQ_SLOT(timeout()));
#endif
}
}
@@ -234,8 +234,8 @@ void KDialogD::newConnection()
itsTimer->stop();
#endif
connect(new KDialogDClient(connectedFD, appName, this),
- TQT_SIGNAL(error(KDialogDClient *)),
- this, TQT_SLOT(deleteConnection(KDialogDClient *)));
+ TQ_SIGNAL(error(KDialogDClient *)),
+ this, TQ_SLOT(deleteConnection(KDialogDClient *)));
}
}
}
@@ -280,8 +280,8 @@ KDialogDClient::KDialogDClient(int sock, const TQString &an, TQObject *parent)
itsAppName(an)
{
kdDebug() << "new client..." << itsAppName << " (" << itsFd << ")" << endl;
- connect(new TQSocketNotifier(itsFd, TQSocketNotifier::Read, this), TQT_SIGNAL(activated(int)), this, TQT_SLOT(read()));
- connect(new TQSocketNotifier(itsFd, TQSocketNotifier::Exception, this), TQT_SIGNAL(activated(int)), this, TQT_SLOT(close()));
+ connect(new TQSocketNotifier(itsFd, TQSocketNotifier::Read, this), TQ_SIGNAL(activated(int)), this, TQ_SLOT(read()));
+ connect(new TQSocketNotifier(itsFd, TQSocketNotifier::Exception, this), TQ_SIGNAL(activated(int)), this, TQ_SLOT(close()));
}
KDialogDClient::~KDialogDClient()
@@ -505,8 +505,8 @@ void KDialogDClient::initDialog(const TQString &caption, KDialogBase *d, unsigne
#endif
}
- connect(itsDlg, TQT_SIGNAL(ok(const TQStringList &)), this, TQT_SLOT(ok(const TQStringList &)));
- connect(itsDlg, TQT_SIGNAL(finished()), this, TQT_SLOT(finished()));
+ connect(itsDlg, TQ_SIGNAL(ok(const TQStringList &)), this, TQ_SLOT(ok(const TQStringList &)));
+ connect(itsDlg, TQ_SIGNAL(finished()), this, TQ_SLOT(finished()));
itsDlg->show();
}