Fix shadowed variable

This commit is contained in:
Thomas Wilshaw
2021-04-12 10:57:57 +01:00
parent ecce4d1ae2
commit 2820f45bca
2 changed files with 1 additions and 4 deletions
+1 -2
View File
@@ -231,8 +231,7 @@ SliderLadderElement::SliderLadderElement(const double &multiplier, QString width
QWidget(parent),
multiplier_(multiplier),
highlighted_(false),
multiplier_visible_(true),
width_hint(width_hint)
multiplier_visible_(true)
{
QVBoxLayout* layout = new QVBoxLayout(this);
-2
View File
@@ -58,8 +58,6 @@ private:
bool multiplier_visible_;
QString width_hint;
};
class SliderLadder : public QFrame