Remove duplicate non-const methods from QProgressBar.
Task-number: QTBUG-23524 Change-Id: I80f7eecb9f892fcd026b3c3f9159958fc99cfe23 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
3a9c06b7bd
commit
eb04862920
@ -526,9 +526,9 @@ void QProgressBar::setInvertedAppearance(bool invert)
|
|||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool QProgressBar::invertedAppearance()
|
bool QProgressBar::invertedAppearance() const
|
||||||
{
|
{
|
||||||
Q_D(QProgressBar);
|
Q_D(const QProgressBar);
|
||||||
return d->invertedAppearance;
|
return d->invertedAppearance;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -549,9 +549,9 @@ void QProgressBar::setTextDirection(QProgressBar::Direction textDirection)
|
|||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
||||||
QProgressBar::Direction QProgressBar::textDirection()
|
QProgressBar::Direction QProgressBar::textDirection() const
|
||||||
{
|
{
|
||||||
Q_D(QProgressBar);
|
Q_D(const QProgressBar);
|
||||||
return d->textDirection;
|
return d->textDirection;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -92,11 +92,9 @@ public:
|
|||||||
Qt::Orientation orientation() const;
|
Qt::Orientation orientation() const;
|
||||||
|
|
||||||
void setInvertedAppearance(bool invert);
|
void setInvertedAppearance(bool invert);
|
||||||
bool invertedAppearance(); //### Qt5 make const
|
bool invertedAppearance() const;
|
||||||
bool invertedAppearance() const { return const_cast<QProgressBar *>(this)->invertedAppearance(); }
|
|
||||||
void setTextDirection(QProgressBar::Direction textDirection);
|
void setTextDirection(QProgressBar::Direction textDirection);
|
||||||
QProgressBar::Direction textDirection(); //### Qt5 make const
|
QProgressBar::Direction textDirection() const;
|
||||||
QProgressBar::Direction textDirection() const { return const_cast<QProgressBar *>(this)->textDirection(); }
|
|
||||||
|
|
||||||
void setFormat(const QString &format);
|
void setFormat(const QString &format);
|
||||||
QString format() const;
|
QString format() const;
|
||||||
|
Loading…
Reference in New Issue
Block a user