diff options
author | 2012-04-03 00:49:55 -0700 | |
---|---|---|
committer | 2012-04-03 00:49:55 -0700 | |
commit | 244c825c4b72a5446fce96b9c3a609c9f07bb6be (patch) | |
tree | 5a7e3dfed8ab134b1184859d4736d12823cffc88 /java/src/com/android/inputmethod/latin | |
parent | 7a0779a441fdad960176187b59628e77f3bd331a (diff) | |
parent | 0d1a5d5b9710dd8fbdae18b0e69bccb53c7b9207 (diff) | |
download | latinime-244c825c4b72a5446fce96b9c3a609c9f07bb6be.tar.gz latinime-244c825c4b72a5446fce96b9c3a609c9f07bb6be.tar.xz latinime-244c825c4b72a5446fce96b9c3a609c9f07bb6be.zip |
Merge "Cleanup EditorInfoCompatUtils"
Diffstat (limited to 'java/src/com/android/inputmethod/latin')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 3b41e3b0c..177f5e629 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -56,7 +56,6 @@ import android.view.inputmethod.InputMethodSubtype; import com.android.inputmethod.accessibility.AccessibilityUtils; import com.android.inputmethod.accessibility.AccessibleKeyboardViewProxy; import com.android.inputmethod.compat.CompatUtils; -import com.android.inputmethod.compat.EditorInfoCompatUtils; import com.android.inputmethod.compat.InputMethodManagerCompatWrapper; import com.android.inputmethod.compat.SuggestionSpanUtils; import com.android.inputmethod.keyboard.Keyboard; @@ -1273,7 +1272,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen performeEditorAction(EditorInfo.IME_ACTION_NEXT); break; case Keyboard.CODE_ACTION_PREVIOUS: - EditorInfoCompatUtils.performEditorActionPrevious(getCurrentInputConnection()); + performeEditorAction(EditorInfo.IME_ACTION_PREVIOUS); break; case Keyboard.CODE_LANGUAGE_SWITCH: handleLanguageSwitchKey(); |