aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java
diff options
context:
space:
mode:
authorAlan Viverette <alanv@google.com>2011-07-26 14:06:26 -0700
committerAlan Viverette <alanv@google.com>2011-07-26 14:06:26 -0700
commit586a15c3f0d44590a5162e0ab4c3c52511f13f26 (patch)
tree2b5a761f0a83f01fdd2b30fe4b2f4dbda7208f3c /java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java
parente9d74adcc83e1a9fdc3055c08385c6323d22632f (diff)
downloadlatinime-586a15c3f0d44590a5162e0ab4c3c52511f13f26.tar.gz
latinime-586a15c3f0d44590a5162e0ab4c3c52511f13f26.tar.xz
latinime-586a15c3f0d44590a5162e0ab4c3c52511f13f26.zip
Fixed duplicate call to dispatchOnPopulateAccessibilityEvent()
Bug: 5060194 Change-Id: I585ae52204a045fa3941e846b4f9bdd7d541bea6
Diffstat (limited to '')
-rw-r--r--java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java b/java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java
index 8ca834148..86a56308a 100644
--- a/java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java
+++ b/java/src/com/android/inputmethod/accessibility/AccessibleKeyboardViewProxy.java
@@ -105,13 +105,13 @@ public class AccessibleKeyboardViewProxy {
}
/**
- * Receives hover events when accessibility is turned on in API > 11. In
- * earlier API levels, events are manually routed from onTouchEvent.
+ * Receives hover events when accessibility is turned on in SDK versions ICS
+ * and higher.
*
* @param event The hover event.
* @return {@code true} if the event is handled
*/
- public boolean onHoverEvent(MotionEvent event, PointerTracker tracker) {
+ public boolean dispatchHoverEvent(MotionEvent event, PointerTracker tracker) {
if (mGestureDetector.onHoverEvent(event, this, tracker))
return true;