diff options
author | 2014-02-05 23:35:20 -0800 | |
---|---|---|
committer | 2014-02-05 23:35:20 -0800 | |
commit | cf398ac4f5fa3a145261663d9b04fab65ec357f1 (patch) | |
tree | d0139ea488de7c179e600116b95aa1982e610237 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | e02805d90a4fbe0288932d127c127da8a70fdc6e (diff) | |
parent | a9e1930a6a9ce2e53cf9b47e8b0033b763416183 (diff) | |
download | latinime-cf398ac4f5fa3a145261663d9b04fab65ec357f1.tar.gz latinime-cf398ac4f5fa3a145261663d9b04fab65ec357f1.tar.xz latinime-cf398ac4f5fa3a145261663d9b04fab65ec357f1.zip |
am a9e1930a: Merge "Conditionally store the raw suggestions."
* commit 'a9e1930a6a9ce2e53cf9b47e8b0033b763416183':
Conditionally store the raw suggestions.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index c103a4836..3b427720a 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -998,7 +998,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen SuggestedWords.getFromApplicationSpecifiedCompletions( applicationSpecifiedCompletions); final SuggestedWords suggestedWords = new SuggestedWords( - applicationSuggestedWords, + applicationSuggestedWords, null /* rawSuggestions */, false /* typedWordValid */, false /* willAutoCorrect */, false /* isPunctuationSuggestions */, @@ -1418,7 +1418,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen ? SuggestedWords.EMPTY : previousSuggestedWords; final ArrayList<SuggestedWords.SuggestedWordInfo> typedWordAndPreviousSuggestions = SuggestedWords.getTypedWordAndPreviousSuggestions(typedWord, oldSuggestedWords); - return new SuggestedWords(typedWordAndPreviousSuggestions, + return new SuggestedWords(typedWordAndPreviousSuggestions, null /* rawSuggestions */, false /* typedWordValid */, false /* hasAutoCorrectionCandidate */, false /* isPunctuationSuggestions */, |