diff options
author | 2014-05-14 18:31:06 +0900 | |
---|---|---|
committer | 2014-05-14 18:39:39 +0900 | |
commit | 36100397231addedc6e3bfde4003a83476e8f9c9 (patch) | |
tree | 9738bd064c964cf6c4e1c82b35e003135cb8c8ad /java/src | |
parent | c1094d69134740ee0209f1ddfb25dd770b37ab25 (diff) | |
download | latinime-36100397231addedc6e3bfde4003a83476e8f9c9.tar.gz latinime-36100397231addedc6e3bfde4003a83476e8f9c9.tar.xz latinime-36100397231addedc6e3bfde4003a83476e8f9c9.zip |
Rename LMP to LXX just in case
This CL must be checked in together with I7e2ba67f31.
Change-Id: I51cb982f9cf0ace173d535a60293bb4be83bbb75
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/keyboard/KeyboardTheme.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/KeyboardTheme.java b/java/src/com/android/inputmethod/keyboard/KeyboardTheme.java index 429c7ddd7..e0b74fa14 100644 --- a/java/src/com/android/inputmethod/keyboard/KeyboardTheme.java +++ b/java/src/com/android/inputmethod/keyboard/KeyboardTheme.java @@ -34,7 +34,7 @@ public final class KeyboardTheme { static final int THEME_ID_ICS = 0; static final int THEME_ID_KLP = 2; - static final int THEME_ID_LMP = 3; + static final int THEME_ID_LXX = 3; static final int DEFAULT_THEME_ID = THEME_ID_KLP; private static final KeyboardTheme[] KEYBOARD_THEMES = { @@ -42,7 +42,7 @@ public final class KeyboardTheme { VERSION_CODES.ICE_CREAM_SANDWICH), new KeyboardTheme(THEME_ID_KLP, R.style.KeyboardTheme_KLP, VERSION_CODES.KITKAT), - new KeyboardTheme(THEME_ID_LMP, R.style.KeyboardTheme_LMP, + new KeyboardTheme(THEME_ID_LXX, R.style.KeyboardTheme_LXX, // TODO: Update this constant once the *next* version becomes available. VERSION_CODES.CUR_DEVELOPMENT), }; @@ -88,7 +88,7 @@ public final class KeyboardTheme { return 5; case THEME_ID_KLP: return 9; - case THEME_ID_LMP: + case THEME_ID_LXX: return 10; default: // Invalid theme return -1; |