From d7f71f721449853efa88479035c7139898a2a6a5 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 26 May 2016 17:11:39 +0200 Subject: spline-widget: don't use `double' when not needed --- spline-widget/functionconfig.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'spline-widget/functionconfig.h') diff --git a/spline-widget/functionconfig.h b/spline-widget/functionconfig.h index 4db24b84..9bf1671b 100644 --- a/spline-widget/functionconfig.h +++ b/spline-widget/functionconfig.h @@ -39,15 +39,15 @@ private: MyMutex _mutex; QPointF last_input_value; - double max_x; - double max_y; + float max_x; + float max_y; volatile bool activep; State cur, saved; public: - double maxInput() const; - double maxOutput() const; + float maxInput() const; + float maxOutput() const; Map(); - Map(double maxx, double maxy); + Map(float maxx, float maxy); float getValue(float x); bool getLastPoint(QPointF& point); @@ -57,8 +57,8 @@ public: void addPoint(QPointF pt); void movePoint(int idx, QPointF pt); const QList getPoints(); - void setMaxInput(double MaxInput); - void setMaxOutput(double MaxOutput); + void setMaxInput(float MaxInput); + void setMaxOutput(float MaxOutput); void saveSettings(QSettings& settings, const QString& title); void loadSettings(QSettings& settings, const QString& title); -- cgit v1.2.3