From 6008d08557e8c883ff533d1d4205a66aba49ea95 Mon Sep 17 00:00:00 2001 From: Anton Lundin Date: Sat, 12 Jul 2014 14:24:24 +0200 Subject: Use doubles in DoubleSpinBoxDelegate The previous code used qreals, but it feels clearer to use doubles when the name of the class contains the word double. The performance loss of using doubles instead of floats on arm is non-existent in this case. Signed-off-by: Anton Lundin Signed-off-by: Dirk Hohndel --- qt-ui/modeldelegates.cpp | 2 +- qt-ui/modeldelegates.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'qt-ui') diff --git a/qt-ui/modeldelegates.cpp b/qt-ui/modeldelegates.cpp index 8dfc56789..b339e7f4a 100644 --- a/qt-ui/modeldelegates.cpp +++ b/qt-ui/modeldelegates.cpp @@ -379,7 +379,7 @@ QWidget *SpinBoxDelegate::createEditor(QWidget *parent, const QStyleOptionViewIt return w; } -DoubleSpinBoxDelegate::DoubleSpinBoxDelegate(qreal min, qreal max, QObject *parent): +DoubleSpinBoxDelegate::DoubleSpinBoxDelegate(double min, double max, QObject *parent): QStyledItemDelegate(parent), min(min), max(max) diff --git a/qt-ui/modeldelegates.h b/qt-ui/modeldelegates.h index 562111d9d..bb948d32d 100644 --- a/qt-ui/modeldelegates.h +++ b/qt-ui/modeldelegates.h @@ -101,11 +101,11 @@ private: class DoubleSpinBoxDelegate : public QStyledItemDelegate { Q_OBJECT public: - DoubleSpinBoxDelegate(qreal min, qreal max, QObject *parent = 0); + DoubleSpinBoxDelegate(double min, double max, QObject *parent = 0); virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const; private: - qreal min; - qreal max; + double min; + double max; }; #endif // MODELDELEGATES_H -- cgit v1.2.3-70-g09d2