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/charlatan/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/charlatan/seeker.cpp')
-rw-r--r-- | noatun-plugins/charlatan/seeker.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/noatun-plugins/charlatan/seeker.cpp b/noatun-plugins/charlatan/seeker.cpp index 4c07411..c5ca084 100644 --- a/noatun-plugins/charlatan/seeker.cpp +++ b/noatun-plugins/charlatan/seeker.cpp @@ -20,25 +20,25 @@ * */ -#include <qtimer.h> +#include <tqtimer.h> #include <noatun/app.h> #include <noatun/player.h> #include "seeker.h" #include "seeker.moc" -Seeker::Seeker(QWidget * parent) - : QSlider(0, 60, 10, 0, Horizontal, parent), +Seeker::Seeker(TQWidget * parent) + : TQSlider(0, 60, 10, 0, Horizontal, parent), adjusting_(false) { - delayedUpdateTimer_ = new QTimer(this); + delayedUpdateTimer_ = new TQTimer(this); - connect(this, SIGNAL(sliderPressed()), SLOT(slotSliderPressed())); - connect(this, SIGNAL(sliderReleased()), SLOT(slotSliderReleased())); - connect(this, SIGNAL(valueChanged(int)), SLOT(slotValueChanged(int))); + connect(this, TQT_SIGNAL(sliderPressed()), TQT_SLOT(slotSliderPressed())); + connect(this, TQT_SIGNAL(sliderReleased()), TQT_SLOT(slotSliderReleased())); + connect(this, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotValueChanged(int))); - connect(napp->player(), SIGNAL(timeout()), SLOT(slotTimeout())); - connect(delayedUpdateTimer_, SIGNAL(timeout()), SLOT(slotDelayedUpdate())); + connect(napp->player(), TQT_SIGNAL(timeout()), TQT_SLOT(slotTimeout())); + connect(delayedUpdateTimer_, TQT_SIGNAL(timeout()), TQT_SLOT(slotDelayedUpdate())); } Seeker::~Seeker() @@ -73,7 +73,7 @@ Seeker::slotSliderReleased() } void -Seeker::wheelEvent(QWheelEvent *) +Seeker::wheelEvent(TQWheelEvent *) { // Ignore. } |