summaryrefslogtreecommitdiffstats
path: root/kmix/ksmallslider.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmix/ksmallslider.cpp')
-rw-r--r--kmix/ksmallslider.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kmix/ksmallslider.cpp b/kmix/ksmallslider.cpp
index eb03cfc7..fea113b5 100644
--- a/kmix/ksmallslider.cpp
+++ b/kmix/ksmallslider.cpp
@@ -36,22 +36,22 @@ static const TQColor mutedLowColor2 = "#808080";
static const TQColor backColor2 = "#000000";
*/
-KSmallSlider::KSmallSlider( TQWidget *tqparent, const char *name )
- : TQWidget( tqparent, name ), _orientation( Qt::Vertical )
+KSmallSlider::KSmallSlider( TQWidget *parent, const char *name )
+ : TQWidget( parent, name ), _orientation( Qt::Vertical )
{
init();
}
-KSmallSlider::KSmallSlider( Qt::Orientation orientation, TQWidget *tqparent, const char *name )
- : TQWidget( tqparent, name ), _orientation( orientation )
+KSmallSlider::KSmallSlider( Qt::Orientation orientation, TQWidget *parent, const char *name )
+ : TQWidget( parent, name ), _orientation( orientation )
{
init();
}
KSmallSlider::KSmallSlider( int minValue, int maxValue, int pageStep,
int value, Qt::Orientation orientation,
- TQWidget *tqparent, const char *name )
- : TQWidget( tqparent, name ),
+ TQWidget *parent, const char *name )
+ : TQWidget( parent, name ),
TQRangeControl( minValue, maxValue, 1, pageStep, value ), _orientation( orientation)
{
init();