summaryrefslogtreecommitdiffstats
path: root/amarok/src/scripts/graphequalizer/stdinreader.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:36:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-15 10:10:50 +0900
commitf52f91d7ba8f99e3b9d33d4404d9f21a8b3fb497 (patch)
tree83fa1908b581e4c8a7b14ea3204b8f40d39e296b /amarok/src/scripts/graphequalizer/stdinreader.h
parent00fe96f0930e9cd78404576f0812f71a06d42574 (diff)
downloadamarok-f52f91d7ba8f99e3b9d33d4404d9f21a8b3fb497.tar.gz
amarok-f52f91d7ba8f99e3b9d33d4404d9f21a8b3fb497.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'amarok/src/scripts/graphequalizer/stdinreader.h')
-rw-r--r--amarok/src/scripts/graphequalizer/stdinreader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/amarok/src/scripts/graphequalizer/stdinreader.h b/amarok/src/scripts/graphequalizer/stdinreader.h
index a29ead8e..33edd8d9 100644
--- a/amarok/src/scripts/graphequalizer/stdinreader.h
+++ b/amarok/src/scripts/graphequalizer/stdinreader.h
@@ -19,7 +19,7 @@ public:
:TQObject(parent,name)
{
TQSocketNotifier* streamListener = new TQSocketNotifier(0, TQSocketNotifier::Read, this, "stdinWatcher");
- connect(streamListener, TQT_SIGNAL(activated(int)), this, TQT_SLOT(dataRecieved()) );
+ connect(streamListener, TQ_SIGNAL(activated(int)), this, TQ_SLOT(dataRecieved()) );
}
~StdinReader() { }