diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-06-26 22:52:18 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-06-26 23:05:21 +0200 |
commit | ee0dd3b6d5ad2b6083372f4e4f0cb57a45aaaff2 (patch) | |
tree | dc9374f588200a53a4c2ef556293e176cec97975 /spline | |
parent | a131d0850c731b6b564e493db7148267ceea7e8b (diff) |
options/base-value: rename to `value_'
Diffstat (limited to 'spline')
-rw-r--r-- | spline/spline.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spline/spline.cpp b/spline/spline.cpp index 64a9142d..fc437bb9 100644 --- a/spline/spline.cpp +++ b/spline/spline.cpp @@ -355,9 +355,9 @@ void spline::set_bundle(bundle b, const QString& axis_name, Axis axis) s.get(), [&] { invalidate_settings(); }); // this isn't strictly necessary for the spline but helps the widget - conn_maxx = QObject::connect(&s->opts.clamp_x_, base_value::value_changed<int>(), + conn_maxx = QObject::connect(&s->opts.clamp_x_, value_::value_changed<int>(), ctx.get(), [&](double) { invalidate_settings(); }); - conn_maxy = QObject::connect(&s->opts.clamp_y_, base_value::value_changed<int>(), + conn_maxy = QObject::connect(&s->opts.clamp_y_, value_::value_changed<int>(), ctx.get(), [&](double) { invalidate_settings(); }); } |