diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
commit | 7346aee26bf190a7e70333c40fab4caca847cd27 (patch) | |
tree | 4b019b434f88dcc3eeaafe1d3f26240b4c4718e8 /noatun-plugins/alsaplayer/seeker.cpp | |
parent | 23a3d3aa5b44cbdf305495919866d9dbf4f6da54 (diff) | |
download | tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.tar.gz tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1157634 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun-plugins/alsaplayer/seeker.cpp')
-rw-r--r-- | noatun-plugins/alsaplayer/seeker.cpp | 10 |
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 } |