diff options
author | 2011-08-04 04:17:33 -0700 | |
---|---|---|
committer | 2011-08-04 04:17:33 -0700 | |
commit | ac21e0a3492c9f806ec39eaa77e95af6e7bb5908 (patch) | |
tree | 3dd768ddfc19b2431019cfa3216e7edb0ebdf7b2 /java/src/com/android/inputmethod/deprecated | |
parent | 2e2906bc1793c0389d9d921bded04fb1de252ab6 (diff) | |
parent | 043f7841985916717f4fa821fe3e423daf3ff2f5 (diff) | |
download | latinime-ac21e0a3492c9f806ec39eaa77e95af6e7bb5908.tar.gz latinime-ac21e0a3492c9f806ec39eaa77e95af6e7bb5908.tar.xz latinime-ac21e0a3492c9f806ec39eaa77e95af6e7bb5908.zip |
Merge "Create a way to pass the proximity info to the dictionary"
Diffstat (limited to 'java/src/com/android/inputmethod/deprecated')
-rw-r--r-- | java/src/com/android/inputmethod/deprecated/recorrection/RecorrectionSuggestionEntries.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/deprecated/recorrection/RecorrectionSuggestionEntries.java b/java/src/com/android/inputmethod/deprecated/recorrection/RecorrectionSuggestionEntries.java index 5e6c87044..f33a46277 100644 --- a/java/src/com/android/inputmethod/deprecated/recorrection/RecorrectionSuggestionEntries.java +++ b/java/src/com/android/inputmethod/deprecated/recorrection/RecorrectionSuggestionEntries.java @@ -57,6 +57,7 @@ public class RecorrectionSuggestionEntries { private static SuggestedWords.Builder getTypedSuggestions( Suggest suggest, KeyboardSwitcher keyboardSwitcher, WordComposer word) { - return suggest.getSuggestedWordBuilder(keyboardSwitcher.getKeyboardView(), word, null); + return suggest.getSuggestedWordBuilder(keyboardSwitcher.getKeyboardView(), word, null, + keyboardSwitcher.getLatinKeyboard().getProximityInfo()); } } |