forked from organicmaps/organicmaps
[drape] drop all tiles fix.
This commit is contained in:
parent
d36e78c84a
commit
1917aca0bd
3 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ void CoverageUpdateDescriptor::DropTiles(const TileKey * tileToDrop, size_t size
|
|||
m_tilesToDrop.assign(tileToDrop, tileToDrop + size);
|
||||
}
|
||||
|
||||
bool CoverageUpdateDescriptor::DoDropAll() const
|
||||
bool CoverageUpdateDescriptor::IsDropAll() const
|
||||
{
|
||||
return m_doDropAll;
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@ public:
|
|||
void DropTiles(TileKey const * tileToDrop, size_t size);
|
||||
|
||||
|
||||
bool DoDropAll() const;
|
||||
bool IsDropAll() const;
|
||||
bool IsEmpty() const;
|
||||
|
||||
vector<TileKey> const & GetTilesToDrop() const;
|
||||
|
|
|
@ -60,7 +60,7 @@ namespace df
|
|||
|
||||
for_each(tiles.begin(), tiles.end(), bind(&ReadManager::PushTaskBackForTileKey, this, _1));
|
||||
|
||||
updateDescr.DoDropAll();
|
||||
updateDescr.DropAll();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue