[Qt] replace Boost foreach with Qt version peertablemodel.cpp

This commit is contained in:
Philip Kaufmann 2015-06-01 11:39:52 +02:00
parent 1b0db7b984
commit 7211adad85
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ public:
#if QT_VERSION >= 0x040700
cachedNodeStats.reserve(vNodes.size());
#endif
BOOST_FOREACH(CNode* pnode, vNodes)
foreach (CNode* pnode, vNodes)
{
CNodeCombinedStats stats;
stats.nodeStateStats.nMisbehavior = 0;
@ -92,7 +92,7 @@ public:
// build index map
mapNodeRows.clear();
int row = 0;
BOOST_FOREACH(CNodeCombinedStats &stats, cachedNodeStats)
foreach (const CNodeCombinedStats& stats, cachedNodeStats)
mapNodeRows.insert(std::pair<NodeId, int>(stats.nodeStats.nodeid, row++));
}