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:
authorvng <viktor.govako@gmail.com>2015-07-23 19:04:03 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 03:01:29 +0300
commita19239fa847f1a5d7e95deb1aeacef80799b3ed9 (patch)
treeefded0d3e963222829d5315d050752bf71dff218 /map/framework.cpp
parent57921f1e7c4f2932b41d423f381bf630ff705b34 (diff)
Simplified routing when GetCountryName() needed.
Diffstat (limited to 'map/framework.cpp')
-rw-r--r--map/framework.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/map/framework.cpp b/map/framework.cpp
index a3f655c432..0f84a3b88e 100644
--- a/map/framework.cpp
+++ b/map/framework.cpp
@@ -104,8 +104,7 @@ namespace
pair<MwmSet::MwmHandle, MwmSet::RegResult> Framework::RegisterMap(
LocalCountryFile const & localFile)
{
- string const countryFileName = localFile.GetCountryName();
- LOG(LINFO, ("Loading map:", countryFileName));
+ LOG(LINFO, ("Loading map:", localFile.GetCountryName()));
return m_model.RegisterMap(localFile);
}