Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Gorshenin <y@maps.me>2015-07-06 11:31:18 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:54:30 +0300
commit087e13038e7a2237142b83c84392976ce0150fb6 (patch)
tree1e84e88ef2baa6f960a45e942f763bde684bcef9 /indexer/mwm_set.cpp
parent9cfb43a2c1785f2387b83dc54ecaed8089c6c943 (diff)
GetCountryFile().GetNameWithoutExt() -> GetCountryName()
Diffstat (limited to 'indexer/mwm_set.cpp')
-rw-r--r--indexer/mwm_set.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/mwm_set.cpp b/indexer/mwm_set.cpp
index 2dab311225..76d21b8656 100644
--- a/indexer/mwm_set.cpp
+++ b/indexer/mwm_set.cpp
@@ -125,7 +125,7 @@ pair<MwmSet::MwmLock, bool> MwmSet::RegisterImpl(LocalCountryFile const & localF
return make_pair(MwmLock(), false);
info->SetStatus(MwmInfo::STATUS_REGISTERED);
info->m_file = localFile;
- string const name = localFile.GetCountryFile().GetNameWithoutExt();
+ string const name = localFile.GetCountryName();
vector<shared_ptr<MwmInfo>> & infos = m_info[name];
infos.push_back(info);