diff options
author | 2010-06-02 18:30:27 +0900 | |
---|---|---|
committer | 2010-06-02 19:18:22 +0900 | |
commit | 4ee3676cf38f3f9b2587f37e259b6d7511ef4ab1 (patch) | |
tree | 39acf8d13039453bb57c0aeaecaeaab26df0522a /java/src/com/android/inputmethod/latin/AutoDictionary.java | |
parent | 7f96616c7595c69ea6ce9192d869a0c40ddb752e (diff) | |
download | latinime-4ee3676cf38f3f9b2587f37e259b6d7511ef4ab1.tar.gz latinime-4ee3676cf38f3f9b2587f37e259b6d7511ef4ab1.tar.xz latinime-4ee3676cf38f3f9b2587f37e259b6d7511ef4ab1.zip |
Check suggested words whether they are from mainDic or not
- Added counters for suggestions by dictionarys
- Added a counter for cancelled suggestions
Change-Id: Ia7d3a73855b1e82b60a010f18dba4e1c0fe1c2bb
Diffstat (limited to 'java/src/com/android/inputmethod/latin/AutoDictionary.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/AutoDictionary.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/AutoDictionary.java b/java/src/com/android/inputmethod/latin/AutoDictionary.java index 93f1985ca..94331d3f2 100644 --- a/java/src/com/android/inputmethod/latin/AutoDictionary.java +++ b/java/src/com/android/inputmethod/latin/AutoDictionary.java @@ -85,8 +85,8 @@ public class AutoDictionary extends ExpandableDictionary { private static DatabaseHelper mOpenHelper = null; - public AutoDictionary(Context context, LatinIME ime, String locale) { - super(context); + public AutoDictionary(Context context, LatinIME ime, String locale, int dicTypeId) { + super(context, dicTypeId); mIme = ime; mLocale = locale; if (mOpenHelper == null) { |