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:11:43 +0900
commit5a5b34eb58d2b1568975d61c8e9f8bffc4d7c644 (patch)
tree9fbd5e92aaf311ec8422c4e279c64aa4e1f5309e /amarok/src/scripts/graphequalizer/stdinreader.h
parentada68538b4486667e8b553ddd92a50b090a3b5e1 (diff)
downloadamarok-5a5b34eb.tar.gz
amarok-5a5b34eb.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit f52f91d7ba8f99e3b9d33d4404d9f21a8b3fb497)
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() { }