diff options
author | 10xcryptodev <10xcryptodev@gmail.com> | 2020-04-25 15:05:00 -0300 |
---|---|---|
committer | 10xcryptodev <10xcryptodev@gmail.com> | 2020-04-26 13:57:46 -0300 |
commit | e3ec4924a72c33f202b10a82e8498875d8f1b775 (patch) | |
tree | 2117fb1bdc48b0e3b5a86dc4de2e75487c782ac6 | |
parent | 65276c7737176a5269b052ceae78dbb44b216bf4 (diff) |
qt: remove todo bug fix for old versions of Qt
-rw-r--r-- | src/qt/coincontroldialog.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/qt/coincontroldialog.cpp b/src/qt/coincontroldialog.cpp index 9495ba389a..1889f5e056 100644 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/coincontroldialog.cpp @@ -379,14 +379,6 @@ void CoinControlDialog::viewItemChanged(QTreeWidgetItem* item, int column) if (ui->treeWidget->isEnabled()) // do not update on every click for (un)select all CoinControlDialog::updateLabels(model, this); } - - // TODO: Remove this temporary qt5 fix after Qt5.3 and Qt5.4 are no longer used. - // Fixed in Qt5.5 and above: https://bugreports.qt.io/browse/QTBUG-43473 - else if (column == COLUMN_CHECKBOX && item->childCount() > 0) - { - if (item->checkState(COLUMN_CHECKBOX) == Qt::PartiallyChecked && item->child(0)->checkState(COLUMN_CHECKBOX) == Qt::PartiallyChecked) - item->setCheckState(COLUMN_CHECKBOX, Qt::Checked); - } } // shows count of locked unspent outputs |