diff options
Diffstat (limited to 'qt-models/diveplotdatamodel.cpp')
-rw-r--r-- | qt-models/diveplotdatamodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/diveplotdatamodel.cpp b/qt-models/diveplotdatamodel.cpp index 922cf349c..a2b411bdf 100644 --- a/qt-models/diveplotdatamodel.cpp +++ b/qt-models/diveplotdatamodel.cpp @@ -85,7 +85,7 @@ QVariant DivePlotDataModel::data(const QModelIndex &index, int role) const if (role == Qt::BackgroundRole) { switch (index.column()) { case COLOR: - return getColor((color_indice_t)(VELOCITY_COLORS_START_IDX + item.velocity)); + return getColor((color_index_t)(VELOCITY_COLORS_START_IDX + item.velocity)); } } return QVariant(); |