summaryrefslogtreecommitdiffstats
path: root/amarok/src/sliderwidget.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-04 23:31:50 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 20:46:25 +0900
commitf2d298973b6d05d676b8e343f8541c08754f934d (patch)
tree58947070e41dfcb45d399a34d6276ddc84b7912e /amarok/src/sliderwidget.h
parent9e73bb2a5a64ca8c6787707a67695a2bc55f2b01 (diff)
downloadamarok-f2d298973b6d05d676b8e343f8541c08754f934d.tar.gz
amarok-f2d298973b6d05d676b8e343f8541c08754f934d.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 25db919b40a60e28a09ee456634e825de1f93327)
Diffstat (limited to 'amarok/src/sliderwidget.h')
-rw-r--r--amarok/src/sliderwidget.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/amarok/src/sliderwidget.h b/amarok/src/sliderwidget.h
index 89656885..b2ba6915 100644
--- a/amarok/src/sliderwidget.h
+++ b/amarok/src/sliderwidget.h
@@ -41,7 +41,7 @@ namespace Amarok
public:
- Slider( Qt::Orientation, TQWidget*, uint max = 0 );
+ Slider( TQt::Orientation, TQWidget*, uint max = 0 );
virtual void setValue( int );
@@ -69,7 +69,7 @@ namespace Amarok
int adjustValue( int v ) const
{
int mp = (minValue() + maxValue()) / 2;
- return orientation() == Qt::Vertical ? mp - (v - mp) : v;
+ return orientation() == TQt::Vertical ? mp - (v - mp) : v;
}
private:
@@ -93,7 +93,7 @@ namespace Amarok
Pretty
} SliderMode;
- PrettySlider( Qt::Orientation orientation, SliderMode mode,
+ PrettySlider( TQt::Orientation orientation, SliderMode mode,
TQWidget *parent, uint max = 0 );
virtual void newBundle( const MetaBundle &bundle );