aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2012-05-15 11:37:54 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-05-15 11:37:54 -0700
commit848081ad8bd190ec522a0617af4eb593ccd370e6 (patch)
tree0b5b7be491ddeaaa8e2ccad2eb8074f4f3ef386a /java/src/com/android/inputmethod/latin/LatinIME.java
parenta72b809892e62340900f51391e8a6b29e8b2ab19 (diff)
parent8dced70b062744a2c27e0cf6dcd0787cf598a97c (diff)
downloadlatinime-848081ad8bd190ec522a0617af4eb593ccd370e6.tar.gz
latinime-848081ad8bd190ec522a0617af4eb593ccd370e6.tar.xz
latinime-848081ad8bd190ec522a0617af4eb593ccd370e6.zip
am 8dced70b: Merge "Read and use user dictionary shortcuts." into jb-dev
* commit '8dced70b062744a2c27e0cf6dcd0787cf598a97c': Read and use user dictionary shortcuts.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 8eea373a4..28dcb1e89 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1130,7 +1130,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
@Override
public boolean addWordToDictionary(String word) {
- mUserDictionary.addWord(word, 128);
+ mUserDictionary.addWordToUserDictionary(word, 128);
// Suggestion strip should be updated after the operation of adding word to the
// user dictionary
mHandler.postUpdateSuggestions();