summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorDmitri Plotnikov <dplotnikov@google.com>2010-03-04 09:12:22 -0800
committerDmitri Plotnikov <dplotnikov@google.com>2010-03-04 09:12:58 -0800
commit78def0198a7d8534604c83f5ba8dd6d306559a30 (patch)
treef6bef0bb70f953206d18154c72f86eb11b92b960 /android
parent697658fcac202bdc60cf5169cc5d32138833d6f7 (diff)
Changing the phone book index for Japanese word "other"
Bug: 2487471 Change-Id: I90cef4eb2468c0a58067df984ee98da438aa0e5a
Diffstat (limited to 'android')
-rw-r--r--android/PhonebookIndex.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/android/PhonebookIndex.cpp b/android/PhonebookIndex.cpp
index 4d3da61..57f3bda 100644
--- a/android/PhonebookIndex.cpp
+++ b/android/PhonebookIndex.cpp
@@ -180,10 +180,8 @@ int32_t GetPhonebookIndex(UCharIterator * iter, const char * locale, UChar * out
if (is_CJK(c)) {
if (strncmp(locale, "ja", 2) == 0) {
// Japanese word meaning "misc" or "other"
- out[0] = 0x305D;
- out[1] = 0x306E;
- out[2] = 0x4ED6;
- return 3;
+ out[0] = 0x4ED6;
+ return 1;
} else {
return 0;
}