Skip to content

Commit e3ec492

Browse files
committed
qt: remove todo bug fix for old versions of Qt
1 parent 65276c7 commit e3ec492

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/qt/coincontroldialog.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -379,14 +379,6 @@ void CoinControlDialog::viewItemChanged(QTreeWidgetItem* item, int column)
379379
if (ui->treeWidget->isEnabled()) // do not update on every click for (un)select all
380380
CoinControlDialog::updateLabels(model, this);
381381
}
382-
383-
// TODO: Remove this temporary qt5 fix after Qt5.3 and Qt5.4 are no longer used.
384-
// Fixed in Qt5.5 and above: https://bugreports.qt.io/browse/QTBUG-43473
385-
else if (column == COLUMN_CHECKBOX && item->childCount() > 0)
386-
{
387-
if (item->checkState(COLUMN_CHECKBOX) == Qt::PartiallyChecked && item->child(0)->checkState(COLUMN_CHECKBOX) == Qt::PartiallyChecked)
388-
item->setCheckState(COLUMN_CHECKBOX, Qt::Checked);
389-
}
390382
}
391383

392384
// shows count of locked unspent outputs

0 commit comments

Comments
 (0)