overviewpage: make some code Qt5 compatible
- that changes will be fine for Qt4 also
This commit is contained in:
parent
d9d6c7d936
commit
41fdc1cad1
1 changed files with 3 additions and 2 deletions
|
@ -46,9 +46,10 @@ public:
|
||||||
bool confirmed = index.data(TransactionTableModel::ConfirmedRole).toBool();
|
bool confirmed = index.data(TransactionTableModel::ConfirmedRole).toBool();
|
||||||
QVariant value = index.data(Qt::ForegroundRole);
|
QVariant value = index.data(Qt::ForegroundRole);
|
||||||
QColor foreground = option.palette.color(QPalette::Text);
|
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);
|
painter->setPen(foreground);
|
||||||
|
|
Loading…
Reference in a new issue