summaryrefslogtreecommitdiffstats
path: root/src/magiclabel.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-06 12:58:15 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-09 10:11:51 +0900
commitded8d1e9aa2cb83423db621ce61d984cf4cb83dc (patch)
tree671d59f4f8a1dcf8a103e8328f4e765730ca75e8 /src/magiclabel.cpp
parent62f1c98566758d9365bf08ed9f7b4953f4df2ed0 (diff)
downloadksplash-engine-moodin-ded8d1e9.tar.gz
ksplash-engine-moodin-ded8d1e9.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 3c9cb4f33bd528dba5d48e06af721137f9a26630)
Diffstat (limited to 'src/magiclabel.cpp')
-rw-r--r--src/magiclabel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/magiclabel.cpp b/src/magiclabel.cpp
index b22461d..a77a562 100644
--- a/src/magiclabel.cpp
+++ b/src/magiclabel.cpp
@@ -67,8 +67,8 @@ void MagicLabel::getCommandOutput()
for (int i = 0; i < parts.count(); i++)
*proc << parts[i];
- connect(proc, TQT_SIGNAL(processExited(TDEProcess*)), this, TQT_SLOT(processExited(TDEProcess*)));
- connect(proc, TQT_SIGNAL(receivedStdout(TDEProcess*, char*, int)), this, TQT_SLOT(receivedStdout(TDEProcess*, char*, int)));
+ connect(proc, TQ_SIGNAL(processExited(TDEProcess*)), this, TQ_SLOT(processExited(TDEProcess*)));
+ connect(proc, TQ_SIGNAL(receivedStdout(TDEProcess*, char*, int)), this, TQ_SLOT(receivedStdout(TDEProcess*, char*, int)));
mValue = "";