Skip to content

Commit

Permalink
Qt5: 'void QTreeWidgetItem::setTextColor(int, const QColor&)' is depr…
Browse files Browse the repository at this point in the history
…ecated: Use QTreeWidgetItem::setForeground() instead [-Wdeprecated-declarations]
  • Loading branch information
wwmayer committed Jun 12, 2020
1 parent d195cd5 commit f027c9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Test/Gui/UnitTestImp.cpp
Expand Up @@ -324,7 +324,7 @@ void UnitTestDialog::insertError(const QString& failure, const QString& details)
{
QTreeWidgetItem* item = new QTreeWidgetItem(ui->treeViewFailure);
item->setText(0,failure);
item->setTextColor(0, Qt::red);
item->setForeground(0, Qt::red);
item->setData(0, Qt::UserRole, QVariant(details));
}

Expand Down

0 comments on commit f027c9b

Please sign in to comment.