summaryrefslogtreecommitdiffhomepage
path: root/spline-widget/spline.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-03-27 00:26:00 +0200
committerStanislaw Halik <sthalik@misaki.pl>2017-03-27 00:26:00 +0200
commit324e943f39ad90bac4d66d23b75e43ca42ac84a7 (patch)
tree0d2f4f8a36658ab0238c783c12584ef8c866b619 /spline-widget/spline.hpp
parent93baa1ae8e1045bb4b7834fe90b8c21b6fb9bd76 (diff)
spline: make get_value_no_save() const
Diffstat (limited to 'spline-widget/spline.hpp')
-rw-r--r--spline-widget/spline.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/spline-widget/spline.hpp b/spline-widget/spline.hpp
index d9635397..77b2bdf9 100644
--- a/spline-widget/spline.hpp
+++ b/spline-widget/spline.hpp
@@ -46,6 +46,7 @@ class OPENTRACK_SPLINE_EXPORT spline final
void update_interp_data();
float get_value_internal(int x);
void add_lone_point();
+ float get_value_no_save_internal(double x);
static bool sort_fn(const QPointF& one, const QPointF& two);
static QPointF ensure_in_bounds(const QList<QPointF>& points, double max_x, int i);
@@ -83,7 +84,7 @@ public:
spline(const spline&) = default;
float get_value(double x);
- float get_value_no_save(double x);
+ float get_value_no_save(double x) const;
DEFUN_WARN_UNUSED bool get_last_value(QPointF& point);
void remove_point(int i);
void clear();