Changed value handling.

This commit is contained in:
2026-01-18 18:52:30 +01:00
parent 6aec85418a
commit 093b90fab6
7 changed files with 40 additions and 27 deletions

View File

@@ -15,7 +15,7 @@ class BCValueEditor : public QWidget, private Ui::BCValueEditor
public:
explicit BCValueEditor(const BCValue& bcValue, QWidget *parent = nullptr);
explicit BCValueEditor(int sliderValue, QWidget *parent = nullptr);
int getValue() const;
void setValue(int val);
@@ -23,10 +23,7 @@ public:
signals:
void valueChanged(int value);
private:
const BCValue& _bcValue;
void valueCommited(int value);
};
#endif // BCValueEditor_H