diff options
author | 2014-02-06 07:31:21 +0000 | |
---|---|---|
committer | 2014-02-06 07:31:22 +0000 | |
commit | a9e1930a6a9ce2e53cf9b47e8b0033b763416183 (patch) | |
tree | 5ec034507ed27a353f7ff45c8554c7e5db8dea2a /java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java | |
parent | fd018c1588c24b1fd32746d9bf0a089713c407e0 (diff) | |
parent | a49f61f8a73e64cb4db4f7ee5c0fe54fc40b367c (diff) | |
download | latinime-a9e1930a6a9ce2e53cf9b47e8b0033b763416183.tar.gz latinime-a9e1930a6a9ce2e53cf9b47e8b0033b763416183.tar.xz latinime-a9e1930a6a9ce2e53cf9b47e8b0033b763416183.zip |
Merge "Conditionally store the raw suggestions."
Diffstat (limited to 'java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java index 3ecf5f0fb..6e9050593 100644 --- a/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java +++ b/java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java @@ -1332,7 +1332,8 @@ public final class InputLogic { } else { // We found suggestion spans in the word. We'll create the SuggestedWords out of // them, and make willAutoCorrect false. - final SuggestedWords suggestedWords = new SuggestedWords(suggestions, typedWord, + final SuggestedWords suggestedWords = new SuggestedWords(suggestions, + null /* rawSuggestions */, typedWord, true /* typedWordValid */, false /* willAutoCorrect */, false /* isPunctuationSuggestions */, false /* isObsoleteSuggestions */, false /* isPrediction */, SuggestedWords.NOT_A_SEQUENCE_NUMBER); |