diff options
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. } |