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>2014-09-03 03:11:47 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:25:51 +0300
commit2a992422b9b2186380c34f06ca14098cad2fed53 (patch)
tree170f73bb32509971411373b58f9ea48cc2624c3d /android/jni/com/mapswithme/maps/Framework.cpp
parentad33728c60ac938ca320f5898bde4d6abd251833 (diff)
[categories] Do correct distinguishing of current language and current locale (zh, zh-Hans, zh-Hant).
Diffstat (limited to 'android/jni/com/mapswithme/maps/Framework.cpp')
-rw-r--r--android/jni/com/mapswithme/maps/Framework.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/jni/com/mapswithme/maps/Framework.cpp b/android/jni/com/mapswithme/maps/Framework.cpp
index cdb893b0db..6369959c2e 100644
--- a/android/jni/com/mapswithme/maps/Framework.cpp
+++ b/android/jni/com/mapswithme/maps/Framework.cpp
@@ -923,7 +923,7 @@ extern "C"
m_giClass = m_env->FindClass("com/mapswithme/maps/guides/GuideInfo");
m_methodID = m_env->GetMethodID(m_giClass,
"<init>", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V");
- m_lang = languages::CurrentLanguage();
+ m_lang = languages::GetCurrentNorm();
}
jclass GetClass() const { return m_giClass; }