summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/alsaplayer/seeker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'noatun-plugins/alsaplayer/seeker.cpp')
-rw-r--r--noatun-plugins/alsaplayer/seeker.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/noatun-plugins/alsaplayer/seeker.cpp b/noatun-plugins/alsaplayer/seeker.cpp
index 6ffac8c..606b461 100644
--- a/noatun-plugins/alsaplayer/seeker.cpp
+++ b/noatun-plugins/alsaplayer/seeker.cpp
@@ -20,18 +20,18 @@
*
*/
-#include <qtimer.h>
+#include <tqtimer.h>
#include <noatun/app.h>
#include <noatun/player.h>
#include "seeker.h"
-Seeker::Seeker(QWidget * parent, const char * name)
+Seeker::Seeker(TQWidget * parent, const char * name)
: L33tSlider(0, 1000, 10, 0, Horizontal, parent, name)
{
- connect(this, SIGNAL(userChanged(int)), SLOT(slotValueChanged(int)));
+ connect(this, TQT_SIGNAL(userChanged(int)), TQT_SLOT(slotValueChanged(int)));
- connect(napp->player(), SIGNAL(timeout()), SLOT(slotTimeout()));
+ connect(napp->player(), TQT_SIGNAL(timeout()), TQT_SLOT(slotTimeout()));
}
Seeker::~Seeker()
@@ -52,7 +52,7 @@ void Seeker::slotTimeout()
setValue((int)napp->player()->getTime() / 1000 );
}
-void Seeker::wheelEvent(QWheelEvent *)
+void Seeker::wheelEvent(TQWheelEvent *)
{
// ignore
}