diff options
author | 2014-11-07 17:10:36 +0900 | |
---|---|---|
committer | 2014-11-17 16:23:52 +0900 | |
commit | 83f9524b8796d94fad56280f6b26c9045fea313f (patch) | |
tree | 05ac6bebdd38eb4a85973648b1f51d3f46f1ae84 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | e7a72de8c28662e7a7855528d80c6a22a15fbcde (diff) | |
download | latinime-83f9524b8796d94fad56280f6b26c9045fea313f.tar.gz latinime-83f9524b8796d94fad56280f6b26c9045fea313f.tar.xz latinime-83f9524b8796d94fad56280f6b26c9045fea313f.zip |
Remove the other deprecated constructor to SuggestedWords
Change-Id: Ied821df01e032ebc913d2f15dffdf41a51372ea4
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 719656b07..2be84591a 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1171,9 +1171,13 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen SuggestedWords.getFromApplicationSpecifiedCompletions( applicationSpecifiedCompletions); final SuggestedWords suggestedWords = new SuggestedWords(applicationSuggestedWords, - null /* rawSuggestions */, false /* typedWordValid */, false /* willAutoCorrect */, + null /* rawSuggestions */, + null /* typedWord */, + false /* typedWordValid */, + false /* willAutoCorrect */, false /* isObsoleteSuggestions */, - SuggestedWords.INPUT_STYLE_APPLICATION_SPECIFIED /* inputStyle */); + SuggestedWords.INPUT_STYLE_APPLICATION_SPECIFIED /* inputStyle */, + SuggestedWords.NOT_A_SEQUENCE_NUMBER); // When in fullscreen mode, show completions generated by the application forcibly setSuggestedWords(suggestedWords); } |