diff options
author | 2014-09-03 01:05:39 -0700 | |
---|---|---|
committer | 2014-09-03 01:13:15 -0700 | |
commit | 5d6ac77732b6fe29489deecc297d771642150a2b (patch) | |
tree | f8eade4eb77b859fe6f1d64c2676829746bd4c25 /java/src/com/android/inputmethod/latin/RichInputConnection.java | |
parent | 8c42bf54af9afe44eade9f0c36cfd2136d20e2f6 (diff) | |
download | latinime-5d6ac77732b6fe29489deecc297d771642150a2b.tar.gz latinime-5d6ac77732b6fe29489deecc297d771642150a2b.tar.xz latinime-5d6ac77732b6fe29489deecc297d771642150a2b.zip |
Follow up API signature change
This is a follow up CL for API signature change in
I772c48ff18918e48a81e807b48ff907614485c09
BUG: 17320996
Change-Id: Ic8b6162bda12bf74fae79af212c5d81c400eb9e8
Diffstat (limited to 'java/src/com/android/inputmethod/latin/RichInputConnection.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/RichInputConnection.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/RichInputConnection.java b/java/src/com/android/inputmethod/latin/RichInputConnection.java index f1c7f4340..6b6384c48 100644 --- a/java/src/com/android/inputmethod/latin/RichInputConnection.java +++ b/java/src/com/android/inputmethod/latin/RichInputConnection.java @@ -922,13 +922,13 @@ public final class RichInputConnection { * prevents the application from fulfilling the request. (TODO: Improve the API when it turns * out that we actually need more detailed error codes) */ - public boolean requestUpdateCursorAnchorInfo(final boolean enableMonitor, + public boolean requestCursorUpdates(final boolean enableMonitor, final boolean requestImmediateCallback) { mIC = mParent.getCurrentInputConnection(); final boolean scheduled; if (null != mIC) { - scheduled = InputConnectionCompatUtils.requestUpdateCursorAnchorInfo(mIC, - enableMonitor, requestImmediateCallback); + scheduled = InputConnectionCompatUtils.requestCursorUpdates(mIC, enableMonitor, + requestImmediateCallback); } else { scheduled = false; } |