From a062b1f83fac7976fc2d444ee0b49ff1d06b42e6 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Wed, 8 Jun 2016 12:57:06 +0200 Subject: spline-widget: fix float <-> double promote/demote --- 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 ced6934a..6c039831 100644 --- a/spline-widget/functionconfig.h +++ b/spline-widget/functionconfig.h @@ -39,15 +39,15 @@ private: MyMutex _mutex; QPointF last_input_value; - float max_x; - float max_y; + qreal max_x; + qreal max_y; volatile bool activep; State cur, saved; public: - float maxInput() const; - float maxOutput() const; + qreal maxInput() const; + qreal maxOutput() const; Map(); - Map(float maxx, float maxy); + Map(qreal maxx, qreal 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(float MaxInput); - void setMaxOutput(float MaxOutput); + void setMaxInput(qreal MaxInput); + void setMaxOutput(qreal MaxOutput); void saveSettings(QSettings& settings, const QString& title); void loadSettings(QSettings& settings, const QString& title); -- cgit v1.2.3