X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Fqt%2Faddresstablemodel.cpp;fp=src%2Fqt%2Faddresstablemodel.cpp;h=27f70618d51df69f717791d376014337debdc7b5;hp=a5dc784e09fd3902fd65b3f066563d36f0fde511;hb=5098ea454db9132aa0f576921ca9d1a69429d146;hpb=47d3ceb3da845e216fc9577cbf52f8b5600e5f93 diff --git a/src/qt/addresstablemodel.cpp b/src/qt/addresstablemodel.cpp index a5dc784..27f7061 100644 --- a/src/qt/addresstablemodel.cpp +++ b/src/qt/addresstablemodel.cpp @@ -59,7 +59,7 @@ public: cachedAddressTable.clear(); { LOCK(wallet->cs_wallet); - BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress, std::string)& item, wallet->mapAddressBook) + for (const auto& item : wallet->mapAddressBook) { const CBitcoinAddress& address = item.first; const std::string& strName = item.second;