diff options
author | 2014-11-19 08:34:08 +0000 | |
---|---|---|
committer | 2014-11-19 08:34:08 +0000 | |
commit | 6cea754895872d208c8b6a3bc2f9c26d21746b33 (patch) | |
tree | 0cbbb7e16107500ff3a12172a7560fe70c1f5824 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 8833756d522e247f40b6824f642ee3f5a67e1086 (diff) | |
parent | fde0cce1037a635c34e55baa17424f8eff53b6da (diff) | |
download | latinime-6cea754895872d208c8b6a3bc2f9c26d21746b33.tar.gz latinime-6cea754895872d208c8b6a3bc2f9c26d21746b33.tar.xz latinime-6cea754895872d208c8b6a3bc2f9c26d21746b33.zip |
am fde0cce1: Merge "Remove the other deprecated constructor to SuggestedWords"
* commit 'fde0cce1037a635c34e55baa17424f8eff53b6da':
Remove the other deprecated constructor to SuggestedWords
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); } |