From df17fe046f11cf1d1dafa6d9bad9f84679611e83 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Fri, 2 Dec 2016 13:48:33 +0000 Subject: [PATCH] Bugfix: Qt/RPCConsole: Put column enum in the right places QModelIndex::data argument is a role, not a column --- src/qt/rpcconsole.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 7320c3bf7..f09f3e418 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -975,11 +975,11 @@ void RPCConsole::disconnectSelectedNode() return; // Get selected peer addresses - QList nodes = GUIUtil::getEntryData(ui->peerWidget, 0); + QList nodes = GUIUtil::getEntryData(ui->peerWidget, PeerTableModel::NetNodeId); for(int i = 0; i < nodes.count(); i++) { // Get currently selected peer address - NodeId id = nodes.at(i).data(PeerTableModel::NetNodeId).toInt(); + NodeId id = nodes.at(i).data().toInt(); // Find the node, disconnect it and clear the selected node if(g_connman->DisconnectNode(id)) clearSelectedNode(); @@ -992,11 +992,11 @@ void RPCConsole::banSelectedNode(int bantime) return; // Get selected peer addresses - QList nodes = GUIUtil::getEntryData(ui->peerWidget, 0); + QList nodes = GUIUtil::getEntryData(ui->peerWidget, PeerTableModel::NetNodeId); for(int i = 0; i < nodes.count(); i++) { // Get currently selected peer address - NodeId id = nodes.at(i).data(PeerTableModel::NetNodeId).toInt(); + NodeId id = nodes.at(i).data().toInt(); // Get currently selected peer address int detailNodeRow = clientModel->getPeerTableModel()->getRowByNodeId(id); @@ -1019,11 +1019,11 @@ void RPCConsole::unbanSelectedNode() return; // Get selected ban addresses - QList nodes = GUIUtil::getEntryData(ui->banlistWidget, 0); + QList nodes = GUIUtil::getEntryData(ui->banlistWidget, BanTableModel::Address); for(int i = 0; i < nodes.count(); i++) { // Get currently selected ban address - QString strNode = nodes.at(i).data(BanTableModel::Address).toString(); + QString strNode = nodes.at(i).data().toString(); CSubNet possibleSubnet; LookupSubNet(strNode.toStdString().c_str(), possibleSubnet);