diff options
author | 2014-01-24 22:14:01 +0900 | |
---|---|---|
committer | 2014-01-28 17:18:02 +0900 | |
commit | c9cc1b1de5c44d3d0cc587bd91aaa93985b9b000 (patch) | |
tree | e7b70e1009bdb448c5edd46053b34fe1e531c990 /java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java | |
parent | 4500dedfa94a0f0da16e04bc758eef6e02ef72af (diff) | |
download | latinime-c9cc1b1de5c44d3d0cc587bd91aaa93985b9b000.tar.gz latinime-c9cc1b1de5c44d3d0cc587bd91aaa93985b9b000.tar.xz latinime-c9cc1b1de5c44d3d0cc587bd91aaa93985b9b000.zip |
[IL102] Rename a method
Bug: 8636060
Change-Id: Ia54afdfab9124aa5c35699e357e63eae66a7557f
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); |