diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-04-28 13:10:20 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-04-28 13:10:20 -0700 |
commit | 0794f03b5e9dd1ba55e16b10b11cd6d61530b5b8 (patch) | |
tree | 28a712ce3b167887ed3f035b2d4a66b130bcb425 /qt-ui/modeldelegates.cpp | |
parent | 4c665be05f7128a5a259fb3b71f3d65019639b1d (diff) | |
parent | 0be521bb25cf6210ad47e42eb7a8eb7638c32442 (diff) | |
download | subsurface-0794f03b5e9dd1ba55e16b10b11cd6d61530b5b8.tar.gz |
Merge branch 'RenderStarsOnTable' of https://github.com/tcanabrava/subsurface into Qt
Diffstat (limited to 'qt-ui/modeldelegates.cpp')
-rw-r--r-- | qt-ui/modeldelegates.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qt-ui/modeldelegates.cpp b/qt-ui/modeldelegates.cpp index 1bbf1061b..1ac2f46c6 100644 --- a/qt-ui/modeldelegates.cpp +++ b/qt-ui/modeldelegates.cpp @@ -6,6 +6,7 @@ #include <QtDebug> #include <QPainter> +#include <QSortFilterProxyModel> void StarWidgetsDelegate::paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const { @@ -13,7 +14,7 @@ void StarWidgetsDelegate::paint(QPainter* painter, const QStyleOptionViewItem& o return; } - int rating = index.model()->data(index, DiveTripModel::DelegatesRole).toInt(); + int rating = index.model()->data(index, Qt::DisplayRole).toInt(); if (option.state & QStyle::State_Selected) painter->fillRect(option.rect, option.palette.highlight()); |