aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/deprecated/voice/FieldContext.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-11-21 16:38:28 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-11-21 16:38:28 -0800
commit25513d30801f7b18db02ed14fe92b9437faccb9e (patch)
tree7f58e6e5f1e8363928e750bd5790729c720df9cf /java/src/com/android/inputmethod/deprecated/voice/FieldContext.java
parenta870ec2af4f1164fd1c15538a1cae0982344ed79 (diff)
parente7eac906c0a14b644d457beeb73a407fa1b63673 (diff)
downloadlatinime-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.java4
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());