mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-29 16:50:13 +01:00
2016-05-24 Fred Gleason <fredg@paravelsystems.com>
* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
This commit is contained in:
@@ -2,9 +2,7 @@
|
||||
//
|
||||
// An audio- and touchscreen-friendly slider widget.
|
||||
//
|
||||
// (C) Copyright 2009 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rdslider.cpp,v 1.5 2010/07/29 19:32:34 cvs Exp $
|
||||
// (C) Copyright 2009,2016 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Library General Public License
|
||||
@@ -34,16 +32,16 @@
|
||||
#include <qpixmap.h>
|
||||
|
||||
|
||||
RDSlider::RDSlider(QWidget *parent=0,const char *name=0)
|
||||
: QWidget(parent,name),QRangeControl()
|
||||
RDSlider::RDSlider(QWidget *parent=0)
|
||||
: QWidget(parent),QRangeControl()
|
||||
{
|
||||
init(RDSlider::Right);
|
||||
update();
|
||||
}
|
||||
|
||||
|
||||
RDSlider::RDSlider(RDSlider::Orientation orient,QWidget *parent,const char *name)
|
||||
: QWidget(parent,name),QRangeControl()
|
||||
RDSlider::RDSlider(RDSlider::Orientation orient,QWidget *parent)
|
||||
: QWidget(parent),QRangeControl()
|
||||
{
|
||||
init(orient);
|
||||
setOrientation(orient);
|
||||
@@ -51,8 +49,8 @@ RDSlider::RDSlider(RDSlider::Orientation orient,QWidget *parent,const char *name
|
||||
|
||||
|
||||
RDSlider::RDSlider(int minValue,int maxValue,int pageStep,int value,
|
||||
RDSlider::Orientation orient,QWidget *parent,const char *name)
|
||||
: QWidget(parent,name),QRangeControl()
|
||||
RDSlider::Orientation orient,QWidget *parent)
|
||||
: QWidget(parent),QRangeControl()
|
||||
{
|
||||
init(orient);
|
||||
setOrientation(orient);
|
||||
|
||||
Reference in New Issue
Block a user