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 <mipt.vi002@gmail.com>2017-04-05 13:06:42 +0300
committerGitHub <noreply@github.com>2017-04-05 13:06:42 +0300
commite9b446ff4302980a35b2df6026cf615fe8386589 (patch)
treebbaef60259ed58619eba8d52e997ca511c5d0b3a /feature_list/feature_list.cpp
parent330fb14366eb4e64a17567db94a65ee2c16421dd (diff)
parent0f1fb3c9f81e3d0844613f145b995f9497f9437d (diff)
Merge pull request #5691 from darina/icu-transliteration
Transliteration using for obtaining best feature name.
Diffstat (limited to 'feature_list/feature_list.cpp')
-rw-r--r--feature_list/feature_list.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/feature_list/feature_list.cpp b/feature_list/feature_list.cpp
index ef38c56afc..b2ed1a8a20 100644
--- a/feature_list/feature_list.cpp
+++ b/feature_list/feature_list.cpp
@@ -192,7 +192,7 @@ public:
string const & mwmName = f.GetID().GetMwmName();
string name, secondary;
- f.GetPreferredNames(name, secondary);
+ f.GetPreferredNames(false /* allowTranslit */, name, secondary);
string const & uid = BuildUniqueId(ll, name);
string const & lat = strings::to_string_with_digits_after_comma(ll.lat, 6);
string const & lon = strings::to_string_with_digits_after_comma(ll.lon, 6);