diff options
author | 2014-11-19 08:30:02 +0000 | |
---|---|---|
committer | 2014-11-19 08:30:03 +0000 | |
commit | fde0cce1037a635c34e55baa17424f8eff53b6da (patch) | |
tree | 0b41b7db7d9c39efb0613706f3f0145314f43fc3 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | b9116af29f971137e7bd6754c5d74d35aeeed05b (diff) | |
parent | 83f9524b8796d94fad56280f6b26c9045fea313f (diff) | |
download | latinime-fde0cce1037a635c34e55baa17424f8eff53b6da.tar.gz latinime-fde0cce1037a635c34e55baa17424f8eff53b6da.tar.xz latinime-fde0cce1037a635c34e55baa17424f8eff53b6da.zip |
Merge "Remove the other deprecated constructor to SuggestedWords"
Diffstat (limited to '')
-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); } |