forked from organicmaps/organicmaps
[new downloader] Review fixes.
This commit is contained in:
parent
5d62dc7c63
commit
18e19e0ccf
2 changed files with 5 additions and 4 deletions
|
@ -486,10 +486,11 @@ void Framework::OnMapDeregistered(platform::LocalCountryFile const & localFile)
|
|||
m_storage.DeleteCustomCountryVersion(localFile);
|
||||
}
|
||||
|
||||
bool Framework::HasUnsavedChanges(storage::TCountryId const & countryId)
|
||||
bool Framework::HasUnsavedEdits(storage::TCountryId const & countryId)
|
||||
{
|
||||
bool hasUnsavedChanges = false;
|
||||
auto forEachInSubtree = [&hasUnsavedChanges](storage::TCountryId const & /* descendantId */, bool groupNode)
|
||||
auto const forEachInSubtree = [&hasUnsavedChanges](storage::TCountryId const & /* descendantId */,
|
||||
bool groupNode)
|
||||
{
|
||||
if (!groupNode)
|
||||
{
|
||||
|
|
|
@ -174,9 +174,9 @@ public:
|
|||
void ReleaseWatchFrameRenderer();
|
||||
bool IsWatchFrameRendererInited() const;
|
||||
|
||||
/// \returns true if there's unsaved changes in map with |countryId| and false otherwise.
|
||||
/// \returns true if there're unsaved changes in map with |countryId| and false otherwise.
|
||||
/// \note It works for group and leaf node.
|
||||
bool HasUnsavedChanges(storage::TCountryId const & countryId);
|
||||
bool HasUnsavedEdits(storage::TCountryId const & countryId);
|
||||
|
||||
/// Registers all local map files in internal indexes.
|
||||
void RegisterAllMaps();
|
||||
|
|
Loading…
Add table
Reference in a new issue