summaryrefslogtreecommitdiffstats
path: root/amarok/src/scripts/graphequalizer/stdinreader.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-18 03:28:57 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-18 03:28:57 +0000
commit1d9d9f5ce46f0220f7b1b350f5ad4e6dc5079ac6 (patch)
tree728d80ad748a95d7aa27ee020706dbe985e0e8cb /amarok/src/scripts/graphequalizer/stdinreader.h
parente9db3e45ed0189bbe18125b120da394a5bc8a832 (diff)
downloadamarok-1d9d9f5ce46f0220f7b1b350f5ad4e6dc5079ac6.tar.gz
amarok-1d9d9f5ce46f0220f7b1b350f5ad4e6dc5079ac6.zip
Finish TQt4 porting of Amarok
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/amarok@1228394 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'amarok/src/scripts/graphequalizer/stdinreader.h')
-rw-r--r--amarok/src/scripts/graphequalizer/stdinreader.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/amarok/src/scripts/graphequalizer/stdinreader.h b/amarok/src/scripts/graphequalizer/stdinreader.h
index 16ff12b4..4fa92856 100644
--- a/amarok/src/scripts/graphequalizer/stdinreader.h
+++ b/amarok/src/scripts/graphequalizer/stdinreader.h
@@ -9,12 +9,12 @@
#include <tqtextstream.h>
#include <kdebug.h>
-class StdinReader : public QObject
+class StdinReader : public TQObject
{
-Q_OBJECT
+TQ_OBJECT
public:
- StdinReader(TQObject * parent = 0, const char * name = 0)
- :TQObject(parent,name)
+ StdinReader(TQObject * tqparent = 0, const char * name = 0)
+ :TQObject(tqparent,name)
{
TQSocketNotifier* streamListener = new TQSocketNotifier(0, TQSocketNotifier::Read, this, "stdinWatcher");
connect(streamListener, TQT_SIGNAL(activated(int)), this, TQT_SLOT(dataRecieved()) );