diff options
author | 2011-11-21 16:38:28 -0800 | |
---|---|---|
committer | 2011-11-21 16:38:28 -0800 | |
commit | 25513d30801f7b18db02ed14fe92b9437faccb9e (patch) | |
tree | 7f58e6e5f1e8363928e750bd5790729c720df9cf /java/src/com/android/inputmethod/deprecated/voice/FieldContext.java | |
parent | a870ec2af4f1164fd1c15538a1cae0982344ed79 (diff) | |
parent | e7eac906c0a14b644d457beeb73a407fa1b63673 (diff) | |
download | latinime-25513d30801f7b18db02ed14fe92b9437faccb9e.tar.gz latinime-25513d30801f7b18db02ed14fe92b9437faccb9e.tar.xz latinime-25513d30801f7b18db02ed14fe92b9437faccb9e.zip |
am e7eac906: Pending onStartInputView only if the EditorInfo is identical
* commit 'e7eac906c0a14b644d457beeb73a407fa1b63673':
Pending onStartInputView only if the EditorInfo is identical
Diffstat (limited to 'java/src/com/android/inputmethod/deprecated/voice/FieldContext.java')
-rw-r--r-- | java/src/com/android/inputmethod/deprecated/voice/FieldContext.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/deprecated/voice/FieldContext.java b/java/src/com/android/inputmethod/deprecated/voice/FieldContext.java index 3c79cc218..fd2cf3d25 100644 --- a/java/src/com/android/inputmethod/deprecated/voice/FieldContext.java +++ b/java/src/com/android/inputmethod/deprecated/voice/FieldContext.java @@ -43,10 +43,10 @@ public class FieldContext { Bundle mFieldInfo; - public FieldContext(InputConnection conn, EditorInfo info, + public FieldContext(InputConnection conn, EditorInfo editorInfo, String selectedLanguage, String[] enabledLanguages) { mFieldInfo = new Bundle(); - addEditorInfoToBundle(info, mFieldInfo); + addEditorInfoToBundle(editorInfo, mFieldInfo); addInputConnectionToBundle(conn, mFieldInfo); addLanguageInfoToBundle(selectedLanguage, enabledLanguages, mFieldInfo); if (DBG) Log.i("FieldContext", "Bundle = " + mFieldInfo.toString()); |