summaryrefslogtreecommitdiffstats
path: root/examples/sql/books/bookdelegate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sql/books/bookdelegate.cpp')
-rw-r--r--examples/sql/books/bookdelegate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sql/books/bookdelegate.cpp b/examples/sql/books/bookdelegate.cpp
index ff965eda44..afc4edf434 100644
--- a/examples/sql/books/bookdelegate.cpp
+++ b/examples/sql/books/bookdelegate.cpp
@@ -44,7 +44,7 @@ void BookDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
if (index.column() != 5) {
- QStyleOptionViewItemV3 opt = option;
+ QStyleOptionViewItem opt = option;
opt.rect.adjust(0, 0, -1, -1); // since we draw the grid ourselves
QSqlRelationalDelegate::paint(painter, opt, index);
} else {