Merge #9266: Bugfix: Qt/RPCConsole: Put column enum in the right places
df17fe0
Bugfix: Qt/RPCConsole: Put column enum in the right places (Luke Dashjr)
This commit is contained in:
commit
2044e37beb
1 changed files with 6 additions and 6 deletions
|
@ -1008,11 +1008,11 @@ void RPCConsole::disconnectSelectedNode()
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Get selected peer addresses
|
// Get selected peer addresses
|
||||||
QList<QModelIndex> nodes = GUIUtil::getEntryData(ui->peerWidget, 0);
|
QList<QModelIndex> nodes = GUIUtil::getEntryData(ui->peerWidget, PeerTableModel::NetNodeId);
|
||||||
for(int i = 0; i < nodes.count(); i++)
|
for(int i = 0; i < nodes.count(); i++)
|
||||||
{
|
{
|
||||||
// Get currently selected peer address
|
// 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
|
// Find the node, disconnect it and clear the selected node
|
||||||
if(g_connman->DisconnectNode(id))
|
if(g_connman->DisconnectNode(id))
|
||||||
clearSelectedNode();
|
clearSelectedNode();
|
||||||
|
@ -1025,11 +1025,11 @@ void RPCConsole::banSelectedNode(int bantime)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Get selected peer addresses
|
// Get selected peer addresses
|
||||||
QList<QModelIndex> nodes = GUIUtil::getEntryData(ui->peerWidget, 0);
|
QList<QModelIndex> nodes = GUIUtil::getEntryData(ui->peerWidget, PeerTableModel::NetNodeId);
|
||||||
for(int i = 0; i < nodes.count(); i++)
|
for(int i = 0; i < nodes.count(); i++)
|
||||||
{
|
{
|
||||||
// Get currently selected peer address
|
// 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
|
// Get currently selected peer address
|
||||||
int detailNodeRow = clientModel->getPeerTableModel()->getRowByNodeId(id);
|
int detailNodeRow = clientModel->getPeerTableModel()->getRowByNodeId(id);
|
||||||
|
@ -1052,11 +1052,11 @@ void RPCConsole::unbanSelectedNode()
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Get selected ban addresses
|
// Get selected ban addresses
|
||||||
QList<QModelIndex> nodes = GUIUtil::getEntryData(ui->banlistWidget, 0);
|
QList<QModelIndex> nodes = GUIUtil::getEntryData(ui->banlistWidget, BanTableModel::Address);
|
||||||
for(int i = 0; i < nodes.count(); i++)
|
for(int i = 0; i < nodes.count(); i++)
|
||||||
{
|
{
|
||||||
// Get currently selected ban address
|
// Get currently selected ban address
|
||||||
QString strNode = nodes.at(i).data(BanTableModel::Address).toString();
|
QString strNode = nodes.at(i).data().toString();
|
||||||
CSubNet possibleSubnet;
|
CSubNet possibleSubnet;
|
||||||
|
|
||||||
LookupSubNet(strNode.toStdString().c_str(), possibleSubnet);
|
LookupSubNet(strNode.toStdString().c_str(), possibleSubnet);
|
||||||
|
|
Loading…
Reference in a new issue