summaryrefslogtreecommitdiffstats
path: root/kicker-applets/mediacontrol/mcslider.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kicker-applets/mediacontrol/mcslider.cpp')
-rw-r--r--kicker-applets/mediacontrol/mcslider.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kicker-applets/mediacontrol/mcslider.cpp b/kicker-applets/mediacontrol/mcslider.cpp
index 642d2e2..cad953d 100644
--- a/kicker-applets/mediacontrol/mcslider.cpp
+++ b/kicker-applets/mediacontrol/mcslider.cpp
@@ -15,12 +15,12 @@
* *
***************************************************************************/
-#include <qpixmap.h>
+#include <tqpixmap.h>
#include "mcslider.h"
-MCSlider::MCSlider( Orientation orientation, QWidget *parent, const char *name )
- : QSlider( orientation, parent, name )
+MCSlider::MCSlider( Orientation orientation, TQWidget *parent, const char *name )
+ : TQSlider( orientation, parent, name )
{
setBackgroundOrigin(WidgetOrigin);
setBackground();
@@ -38,13 +38,13 @@ void MCSlider::setBackground()
if (parentWidget()->paletteBackgroundPixmap())
{
- QPixmap pm(width(), height());
+ TQPixmap pm(width(), height());
pm.fill(parentWidget(), pos());
setPaletteBackgroundPixmap(pm);
}
}
-void MCSlider::wheelEvent(QWheelEvent *e)
+void MCSlider::wheelEvent(TQWheelEvent *e)
{
if (e->orientation() == Horizontal)
return;
@@ -59,7 +59,7 @@ void MCSlider::wheelEvent(QWheelEvent *e)
}
else
{
- QSlider::wheelEvent(e);
+ TQSlider::wheelEvent(e);
}
}