diff options
| author | Tadashi G. Takaoka <takaoka@google.com> | 2014-02-07 09:53:42 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-02-07 09:53:43 +0000 |
| commit | 4f72923fa2d9da819699e84922d56abfdfe16355 (patch) | |
| tree | 7d762936f87d4c893a3c480043d7adfeb4ab7d00 /java/src/com/android/inputmethod/keyboard/Key.java | |
| parent | 4e85476740104ae4b91c3d22df2fb0ee4ecd5c5b (diff) | |
| parent | 9684b33b69a62a058c767786ae6a23b809d27385 (diff) | |
Merge "Rename Key.keyLabel attribute to KeySpec"
Diffstat (limited to 'java/src/com/android/inputmethod/keyboard/Key.java')
| -rw-r--r-- | java/src/com/android/inputmethod/keyboard/Key.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/Key.java b/java/src/com/android/inputmethod/keyboard/Key.java index ed691f874..1c8bada15 100644 --- a/java/src/com/android/inputmethod/keyboard/Key.java +++ b/java/src/com/android/inputmethod/keyboard/Key.java @@ -315,7 +315,7 @@ public class Key implements Comparable<Key> { } mActionFlags = actionFlags; - final String keySpec = style.getString(keyAttr, R.styleable.Keyboard_Key_keyLabel); + final String keySpec = style.getString(keyAttr, R.styleable.Keyboard_Key_keySpec); if (TextUtils.isEmpty(keySpec)) { throw new RuntimeException("Empty keySpec"); } |
