aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/deprecated
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2011-08-04 04:17:33 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-08-04 04:17:33 -0700
commitac21e0a3492c9f806ec39eaa77e95af6e7bb5908 (patch)
tree3dd768ddfc19b2431019cfa3216e7edb0ebdf7b2 /java/src/com/android/inputmethod/deprecated
parent2e2906bc1793c0389d9d921bded04fb1de252ab6 (diff)
parent043f7841985916717f4fa821fe3e423daf3ff2f5 (diff)
downloadlatinime-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.java3
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());
}
}