[editor] Minor changes.

This commit is contained in:
Alex Zolotarev 2016-01-16 14:02:46 +03:00 committed by Sergey Yershov
parent 627878e6ce
commit 5752ea4b2b
2 changed files with 3 additions and 3 deletions

View file

@ -254,7 +254,7 @@ void Editor::LoadMapEdits()
MwmSet::MwmId const id = m_mwmIdByMapNameFn(mapName);
if (!id.IsAlive())
{
// TODO(AlexZ): MWM file was deleted, but changes have left. What whould we do in this case?
// TODO(AlexZ): MWM file was deleted, but changes have left. What should we do in this case?
LOG(LWARNING, (mapName, "version", mapVersion, "references not existing MWM file."));
continue;
}
@ -525,7 +525,6 @@ bool Editor::IsNameEditable(FeatureType const & feature) const
if (typeDesc && typeDesc->name)
return true;
}
return false;
}
@ -541,7 +540,6 @@ bool Editor::IsAddressEditable(FeatureType const & feature) const
if (typeDesc && typeDesc->address)
return true;
}
return false;
}

View file

@ -74,7 +74,9 @@ public:
string const & editedHouseNumber = "");
vector<feature::Metadata::EType> EditableMetadataForType(FeatureType const & feature) const;
/// @returns true if feature's name is editable.
bool IsNameEditable(FeatureType const & feature) const;
/// @returns true if street and house number are editable.
bool IsAddressEditable(FeatureType const & feature) const;
using TChangesetTags = map<string, string>;