diff options
author | 2012-04-03 17:27:51 +0900 | |
---|---|---|
committer | 2012-04-03 17:27:51 +0900 | |
commit | 8f433a66b2e8b327d7854eb501cf0e93afed4117 (patch) | |
tree | 0ac807c9ea48f2a27432851d0134d7ae5f6c450f /java/src | |
parent | 0d1a5d5b9710dd8fbdae18b0e69bccb53c7b9207 (diff) | |
download | latinime-8f433a66b2e8b327d7854eb501cf0e93afed4117.tar.gz latinime-8f433a66b2e8b327d7854eb501cf0e93afed4117.tar.xz latinime-8f433a66b2e8b327d7854eb501cf0e93afed4117.zip |
Fix typo
Follow up for I5b9964f2
Bug: 6129704
Change-Id: Ia90c013cf4c4e6f675da5701644bd10833898c3f
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 177f5e629..d56040acc 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1175,7 +1175,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen return keyboard != null ? keyboard.mId.imeActionId() : EditorInfo.IME_ACTION_NONE; } - private void performeEditorAction(int actionId) { + private void performEditorAction(int actionId) { final InputConnection ic = getCurrentInputConnection(); if (ic != null) { ic.performEditorAction(actionId); @@ -1266,13 +1266,13 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen mSubtypeSwitcher.switchToShortcutIME(); break; case Keyboard.CODE_ACTION_ENTER: - performeEditorAction(getActionId(switcher.getKeyboard())); + performEditorAction(getActionId(switcher.getKeyboard())); break; case Keyboard.CODE_ACTION_NEXT: - performeEditorAction(EditorInfo.IME_ACTION_NEXT); + performEditorAction(EditorInfo.IME_ACTION_NEXT); break; case Keyboard.CODE_ACTION_PREVIOUS: - performeEditorAction(EditorInfo.IME_ACTION_PREVIOUS); + performEditorAction(EditorInfo.IME_ACTION_PREVIOUS); break; case Keyboard.CODE_LANGUAGE_SWITCH: handleLanguageSwitchKey(); |