summaryrefslogtreecommitdiffstats
path: root/tdefile-plugins
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 10:35:25 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 10:35:25 +0900
commit7e9d8ea45280ad6657796da9536ccf6218111f22 (patch)
tree67d57c480b89c5967466e39bf60f7e4f05434f15 /tdefile-plugins
parent1ecb90ecaf66e1cc8ddeacad21e71640477d9767 (diff)
downloadtdeaddons-7e9d8ea45280ad6657796da9536ccf6218111f22.tar.gz
tdeaddons-7e9d8ea45280ad6657796da9536ccf6218111f22.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdefile-plugins')
-rw-r--r--tdefile-plugins/lnk/lnkforward.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdefile-plugins/lnk/lnkforward.cpp b/tdefile-plugins/lnk/lnkforward.cpp
index 5cf72df..4cd82f6 100644
--- a/tdefile-plugins/lnk/lnkforward.cpp
+++ b/tdefile-plugins/lnk/lnkforward.cpp
@@ -109,8 +109,8 @@ int LNKForwarder::run(TDECmdLineArgs *args)
kdDebug(7034) << "running:" << path << endl;
KRun * run = new KRun(path);
- TQObject::connect(run, TQT_SIGNAL(finished()), this, TQT_SLOT(delayedQuit()));
- TQObject::connect(run, TQT_SIGNAL(error()), this, TQT_SLOT(delayedQuit()));
+ TQObject::connect(run, TQ_SIGNAL(finished()), this, TQ_SLOT(delayedQuit()));
+ TQObject::connect(run, TQ_SIGNAL(error()), this, TQ_SLOT(delayedQuit()));
return exec();
}
@@ -122,7 +122,7 @@ void LNKForwarder::delayedQuit()
{
// Quit in 2 seconds. This leaves time for KRun to pop up
// "app not found" in TDEProcessRunner, if that was the case.
- TQTimer::singleShot(2000, this, TQT_SLOT(deref()));
+ TQTimer::singleShot(2000, this, TQ_SLOT(deref()));
}
//--------------------------------------------------------------------------------