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:
authorArsentiy Milchakov <milcars@mapswithme.com>2016-11-02 12:43:23 +0300
committerIlya Grechuhin <i.grechuhin@gmail.com>2016-11-11 11:05:56 +0300
commit7bd2eed6a4825cf4036011079fa1c8abb7ef5915 (patch)
treee37ec9364de67211ce0f4745ffd76da48f974114 /indexer/drules_selector.cpp
parent36e7c13457c8850567276c60eb25dabb2c720ea5 (diff)
Naming priority for poi objects was changed
Diffstat (limited to 'indexer/drules_selector.cpp')
-rw-r--r--indexer/drules_selector.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/indexer/drules_selector.cpp b/indexer/drules_selector.cpp
index 275cc21e3b..bacc660246 100644
--- a/indexer/drules_selector.cpp
+++ b/indexer/drules_selector.cpp
@@ -106,8 +106,7 @@ bool GetPopulation(FeatureType const & ft, uint32_t & population)
// Feature tag value evaluator for tag 'name'
bool GetName(FeatureType const & ft, string & name)
{
- string intName;
- ft.GetPreferredNames(name, intName);
+ ft.GetReadableName(name);
return true;
}