summaryrefslogtreecommitdiff
path: root/clutter/clutter-gesture-action.h
diff options
context:
space:
mode:
authorEmanuele Aina <emanuele.aina@collabora.com>2012-11-28 22:25:55 +0100
committerEmanuele Aina <emanuele.aina@collabora.com>2012-11-29 10:20:11 +0100
commit7204f51643bc9375b160e99dfa435c20ceae59d8 (patch)
tree906d7a95d0ea79feb27ab158e8af90ec133ef98d /clutter/clutter-gesture-action.h
parent879b1330624f583f8ee44c9ee3b51d52e6603f98 (diff)
downloadclutter-7204f51643bc9375b160e99dfa435c20ceae59d8.tar.gz
gesture-action: Rename 'device' parameter to 'point' and fix docs
The parameter is now used to index the touch/mouse pointer tracked in the gesture array, rename accordingly and update the docs.
Diffstat (limited to 'clutter/clutter-gesture-action.h')
-rw-r--r--clutter/clutter-gesture-action.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/clutter/clutter-gesture-action.h b/clutter/clutter-gesture-action.h
index 2b39039ae..ab38b4b23 100644
--- a/clutter/clutter-gesture-action.h
+++ b/clutter/clutter-gesture-action.h
@@ -109,25 +109,25 @@ gint clutter_gesture_action_get_n_touch_points (ClutterGestu
void clutter_gesture_action_set_n_touch_points (ClutterGestureAction *action,
gint nb_points);
void clutter_gesture_action_get_press_coords (ClutterGestureAction *action,
- guint device,
+ guint point,
gfloat *press_x,
gfloat *press_y);
void clutter_gesture_action_get_motion_coords (ClutterGestureAction *action,
- guint device,
+ guint point,
gfloat *motion_x,
gfloat *motion_y);
CLUTTER_AVAILABLE_IN_1_12
gfloat clutter_gesture_action_get_motion_delta (ClutterGestureAction *action,
- guint device,
+ guint point,
gfloat *delta_x,
gfloat *delta_y);
void clutter_gesture_action_get_release_coords (ClutterGestureAction *action,
- guint device,
+ guint point,
gfloat *release_x,
gfloat *release_y);
CLUTTER_AVAILABLE_IN_1_12
gfloat clutter_gesture_action_get_velocity (ClutterGestureAction *action,
- guint device,
+ guint point,
gfloat *velocity_x,
gfloat *velocity_y);