diff options
author | André Nusser <andre.nusser@googlemail.com> | 2018-06-08 16:43:46 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2018-06-08 16:43:46 +0200 |
commit | 59ec43d9b88dc50f2860b0171f0e4c43e90ee290 (patch) | |
tree | 22a6550c775d7951512d44069faad6a854767310 /plugingui/humanizerframecontent.h | |
parent | 42003bd802d868182bf040e86f2cf2773b8ee851 (diff) |
Fix const in newly added functions.
Diffstat (limited to 'plugingui/humanizerframecontent.h')
-rw-r--r-- | plugingui/humanizerframecontent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugingui/humanizerframecontent.h b/plugingui/humanizerframecontent.h index 1fdc83c..2cf708d 100644 --- a/plugingui/humanizerframecontent.h +++ b/plugingui/humanizerframecontent.h @@ -46,8 +46,8 @@ public: SettingsNotifier& settings_notifier); private: - float stddevSettingsToKnob(float value); - float stddevKnobToSettings(float value); + float stddevSettingsToKnob(float value) const; + float stddevKnobToSettings(float value) const; void attackValueChanged(float value); void falloffValueChanged(float value); |