diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2010-05-05 16:00:01 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-05-05 16:00:01 -0700 |
commit | ad3f4a4561385af969e3e7ff280b59d842c6eb0b (patch) | |
tree | 95f571bce595bd01cee3160711fcbb447afa3fc5 /include | |
parent | b0151801a0c20c3e1d406c7f47af8ba57aff758f (diff) | |
parent | 30f71ce5971b5a129e134b7a1fb8c2e53a50f23f (diff) | |
download | frameworks_native-ad3f4a4561385af969e3e7ff280b59d842c6eb0b.zip frameworks_native-ad3f4a4561385af969e3e7ff280b59d842c6eb0b.tar.gz frameworks_native-ad3f4a4561385af969e3e7ff280b59d842c6eb0b.tar.bz2 |
am f7896449: merge from open-source master
Merge commit 'f78964490d8098387d51444c87bf520ad3f674e2' into kraken
* commit 'f78964490d8098387d51444c87bf520ad3f674e2':
Add new keycodes for the convenience of Japanese IMEs
Call register_localized_collators() with the current locale.
Fixed deserialization problem in DatePicker.
Fix for bug 2467152 files with spaces fail to open.
Set alpha value for newly created dim surface.
telephony: Fix CID when CID is unknown
Diffstat (limited to 'include')
-rwxr-xr-x[-rw-r--r--] | include/ui/KeycodeLabels.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/ui/KeycodeLabels.h b/include/ui/KeycodeLabels.h index 749155e..e81d0f9 100644..100755 --- a/include/ui/KeycodeLabels.h +++ b/include/ui/KeycodeLabels.h @@ -116,6 +116,8 @@ static const KeycodeLabel KEYCODES[] = { { "MUTE", 91 }, { "PAGE_UP", 92 }, { "PAGE_DOWN", 93 }, + { "PICTSYMBOLS", 94 }, + { "SWITCH_CHARSET", 95 }, // NOTE: If you add a new keycode here you must also add it to: // (enum KeyCode, in this file) @@ -222,7 +224,9 @@ typedef enum KeyCode { kKeyCodeForward = 90, kKeyCodeMute = 91, kKeyCodePageUp = 92, - kKeyCodePageDown = 93 + kKeyCodePageDown = 93, + kKeyCodePictSymbols = 94, + kKeyCodeSwitchCharset = 95 } KeyCode; static const KeycodeLabel FLAGS[] = { |