diff options
-rw-r--r-- | muse/awl/checkbox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/muse/awl/checkbox.h b/muse/awl/checkbox.h index 7a6252c1..ac67fc57 100644 --- a/muse/awl/checkbox.h +++ b/muse/awl/checkbox.h @@ -38,7 +38,7 @@ class CheckBox : public QCheckBox { emit valueChanged(double(val), _id); } signals: - void valueChanged(float, int); + void valueChanged(double, int); public slots: void setValue(double val) { setDown(val > 0.5f); } |