From: Jonas Ådahl Date: Tue, 28 Jan 2014 21:50:26 +0000 (+0100) Subject: Remove mention of delta coordinates having device specific direction X-Git-Tag: 0.1.0~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb52822ece29dd201a5a85e1004ba1f5de3a4e67;p=platform%2Fupstream%2Flibinput.git Remove mention of delta coordinates having device specific direction The event represent pointer motions on a screen, so this information is unnecessary. It could also be confused for meaning the provided coordinate's direction being device specific. Signed-off-by: Jonas Ådahl --- diff --git a/src/libinput.h b/src/libinput.h index 8d347b9e..e2d83bf4 100644 --- a/src/libinput.h +++ b/src/libinput.h @@ -363,9 +363,9 @@ libinput_event_pointer_get_time( /** * @ingroup event_pointer * - * Return the delta between the last event and the current event. The axis' - * positive direction is device-specific. For pointer events that are - * not of type LIBINPUT_EVENT_POINTER_MOTION, this function returns 0. + * Return the delta between the last event and the current event. For pointer + * events that are not of type LIBINPUT_EVENT_POINTER_MOTION, this function + * returns 0. * * @note It is an application bug to call this function for events other than * LIBINPUT_EVENT_POINTER_MOTION. @@ -379,9 +379,9 @@ libinput_event_pointer_get_dx( /** * @ingroup event_pointer * - * Return the delta between the last event and the current event. The - * axis' positive direction is device-specific. For pointer events that are - * not of type LIBINPUT_EVENT_POINTER_MOTION, this function returns 0. + * Return the delta between the last event and the current event. For pointer + * events that are not of type LIBINPUT_EVENT_POINTER_MOTION, this function + * returns 0. * * @note It is an application bug to call this function for events other than * LIBINPUT_EVENT_POINTER_MOTION.