overviewpage: make some code Qt5 compatible

- that changes will be fine for Qt4 also
This commit is contained in:
Philip Kaufmann 2013-04-14 19:50:15 +02:00
parent d9d6c7d936
commit 41fdc1cad1
1 changed files with 3 additions and 2 deletions

View File

@ -46,9 +46,10 @@ public:
bool confirmed = index.data(TransactionTableModel::ConfirmedRole).toBool();
QVariant value = index.data(Qt::ForegroundRole);
QColor foreground = option.palette.color(QPalette::Text);
if(qVariantCanConvert<QColor>(value))
if(value.canConvert<QBrush>())
{
foreground = qvariant_cast<QColor>(value);
QBrush brush = qvariant_cast<QBrush>(value);
foreground = brush.color();
}
painter->setPen(foreground);