[new downloader] Review fixes.

This commit is contained in:
Vladimir Byko-Ianko 2016-03-03 17:02:44 +03:00 committed by Sergey Yershov
parent 5d62dc7c63
commit 18e19e0ccf
2 changed files with 5 additions and 4 deletions

View file

@ -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)
{

View file

@ -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();