summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 12:40:03 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 12:40:03 +0900
commit150eee41932515d86f76753a2938866a9d0df816 (patch)
treea3aed80f715047f796f82fcacf2f03d75b395af9
parentdf74cc9f040cb0fc49e2feaa15b077f690c26c25 (diff)
downloadtdeio-locate-150eee41932515d86f76753a2938866a9d0df816.tar.gz
tdeio-locate-150eee41932515d86f76753a2938866a9d0df816.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/locater.cpp8
-rw-r--r--src/tdeio_locate.cpp12
2 files changed, 10 insertions, 10 deletions
diff --git a/src/locater.cpp b/src/locater.cpp
index b74dfd8..d6764d0 100644
--- a/src/locater.cpp
+++ b/src/locater.cpp
@@ -36,10 +36,10 @@ Locater::Locater(TQObject *parent, const char *name)
{
kdDebug(7134) << "Locater::Locater" << endl;
- connect(&m_process, TQT_SIGNAL(processExited(TDEProcess*)),
- this, TQT_SLOT(finished(TDEProcess*)));
- connect(&m_process, TQT_SIGNAL(readReady(KProcIO*)),
- this, TQT_SLOT(gotOutput(KProcIO*)));
+ connect(&m_process, TQ_SIGNAL(processExited(TDEProcess*)),
+ this, TQ_SLOT(finished(TDEProcess*)));
+ connect(&m_process, TQ_SIGNAL(readReady(KProcIO*)),
+ this, TQ_SLOT(gotOutput(KProcIO*)));
setupLocate();
}
diff --git a/src/tdeio_locate.cpp b/src/tdeio_locate.cpp
index 09f2395..fd5db89 100644
--- a/src/tdeio_locate.cpp
+++ b/src/tdeio_locate.cpp
@@ -268,10 +268,10 @@ LocateProtocol::LocateProtocol(const TQCString &pool_socket, const TQCString &ap
{
kdDebug(7134) << "LocateProtocol::LocateProtocol()" << endl;
- connect(&m_locater, TQT_SIGNAL(found(const TQStringList&)),
- this, TQT_SLOT(processLocateOutput(const TQStringList&)));
- connect(&m_locater, TQT_SIGNAL(finished()),
- this, TQT_SLOT(locateFinished()));
+ connect(&m_locater, TQ_SIGNAL(found(const TQStringList&)),
+ this, TQ_SLOT(processLocateOutput(const TQStringList&)));
+ connect(&m_locater, TQ_SIGNAL(finished()),
+ this, TQ_SLOT(locateFinished()));
m_baseDir = NULL;
m_curDir = NULL;
@@ -779,8 +779,8 @@ void LocateProtocol::configRequest()
dialog->addPage(new KLocateConfigLocateWidget(), i18n("Locate"), "edit-find");
// React on user's actions.
- connect(dialog, TQT_SIGNAL(settingsChanged()), this, TQT_SLOT(updateConfig()));
- connect(dialog, TQT_SIGNAL(finished()), this, TQT_SLOT(configFinished()));
+ connect(dialog, TQ_SIGNAL(settingsChanged()), this, TQ_SLOT(updateConfig()));
+ connect(dialog, TQ_SIGNAL(finished()), this, TQ_SLOT(configFinished()));
dialog->show();
tqApp->enter_loop();