[new downloader] CountryTree::Clear() bugfix.

This commit is contained in:
Vladimir Byko-Ianko 2016-03-04 13:11:56 +03:00 committed by Sergey Yershov
parent 24ade81cc3
commit 82bf7a602b

View file

@ -175,7 +175,11 @@ public:
}
/// Deletes all children and makes tree empty
void Clear() { m_countryTree->Clear(); }
void Clear()
{
m_countryTree->Clear();
m_countryTreeHashTable.clear();
}
/// \brief Checks all nodes in tree to find an equal one. If there're several equal nodes
/// returns the first found.