diff options
author | 2014-09-03 14:35:36 +0000 | |
---|---|---|
committer | 2014-09-03 14:35:36 +0000 | |
commit | f2c509a81ef107e6c71dc6804417469d12c94fca (patch) | |
tree | 9da5d353fd2add9e56b3c6cd731fbc5820b25a02 /java/src/com/android/inputmethod/latin/RichInputConnection.java | |
parent | 836987c0cd3d290425b37209e98295734aedb017 (diff) | |
parent | 310da35c77779f399e12c1e4365e6372d1477ef3 (diff) | |
download | latinime-f2c509a81ef107e6c71dc6804417469d12c94fca.tar.gz latinime-f2c509a81ef107e6c71dc6804417469d12c94fca.tar.xz latinime-f2c509a81ef107e6c71dc6804417469d12c94fca.zip |
am 310da35c: Merge "Follow up API signature change" into lmp-dev
* commit '310da35c77779f399e12c1e4365e6372d1477ef3':
Follow up API signature change
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; } |