another explicit sign cast

This commit is contained in:
itsmattkc
2019-09-12 04:04:28 +10:00
parent 0205f76c47
commit 544844458d
@@ -75,5 +75,5 @@ void ProjectExplorerListViewItemDelegate::paint(QPainter *painter, const QStyleO
painter->setPen(option.state & QStyle::State_Selected ?
option.palette.highlightedText().color() : option.palette.text().color());
painter->drawText(text_rect, Qt::AlignLeft | Qt::AlignVCenter, text);
painter->drawText(text_rect, static_cast<int>(Qt::AlignLeft | Qt::AlignVCenter), text);
}