diff options
author | 2014-01-28 01:45:40 -0800 | |
---|---|---|
committer | 2014-01-28 01:45:40 -0800 | |
commit | 1fe68195bd890e10966c16b56bf29b9527aaa46b (patch) | |
tree | 5dbfdcf71bc3cbb6921745fe4b86cd4769e82e90 /java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java | |
parent | bb4280669a32240cacc66dc39bbcc640386222c6 (diff) | |
parent | 9c0344801bd05ab56c3cb70bd32e77747a264627 (diff) | |
download | latinime-1fe68195bd890e10966c16b56bf29b9527aaa46b.tar.gz latinime-1fe68195bd890e10966c16b56bf29b9527aaa46b.tar.xz latinime-1fe68195bd890e10966c16b56bf29b9527aaa46b.zip |
am 9c034480: Merge "[IL102] Rename a method"
* commit '9c0344801bd05ab56c3cb70bd32e77747a264627':
[IL102] Rename a method
Diffstat (limited to 'java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java index 2978aa852..bbeb74b65 100644 --- a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java +++ b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java @@ -1116,7 +1116,7 @@ public final class InputLogic { final SuggestedWords suggestedWords = holder.get(null, Constants.GET_SUGGESTED_WORDS_TIMEOUT); if (suggestedWords != null) { - mLatinIME.showSuggestionStripWithTypedWord(suggestedWords, suggestedWords.mTypedWord); + mLatinIME.showSuggestionStrip(suggestedWords, suggestedWords.mTypedWord); } } @@ -1620,8 +1620,7 @@ public final class InputLogic { mConnection.commitText(batchInputText.substring(0, indexOfLastSpace), 1); final SuggestedWords suggestedWordsForLastWordOfPhraseGesture = suggestedWords.getSuggestedWordsForLastWordOfPhraseGesture(); - mLatinIME.showSuggestionStripWithTypedWord( - suggestedWordsForLastWordOfPhraseGesture, + mLatinIME.showSuggestionStrip(suggestedWordsForLastWordOfPhraseGesture, suggestedWordsForLastWordOfPhraseGesture.mTypedWord); } final String lastWord = batchInputText.substring(indexOfLastSpace); |