forked from organicmaps/organicmaps
[new downloader] CountryTree::Clear() bugfix.
This commit is contained in:
parent
24ade81cc3
commit
82bf7a602b
1 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue