aboutsummaryrefslogtreecommitdiff
path: root/backend/libinput/touch.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-11-16 17:53:52 -0500
committerTony Crisci <tony@dubstepdish.com>2017-11-16 17:53:52 -0500
commitf61986e8dbadf1be3f3d850356d939ef57f942a0 (patch)
treefd7eaf41eafade1a57e93ca165d67b77790f2c0c /backend/libinput/touch.c
parentfb18e345a6e4546fe87729962b54cce61759bc71 (diff)
rename touch slot to touch id
Diffstat (limited to 'backend/libinput/touch.c')
-rw-r--r--backend/libinput/touch.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/backend/libinput/touch.c b/backend/libinput/touch.c
index f133b678..0ba6ec86 100644
--- a/backend/libinput/touch.c
+++ b/backend/libinput/touch.c
@@ -33,7 +33,7 @@ void handle_touch_down(struct libinput_event *event,
wlr_event.device = wlr_dev;
wlr_event.time_msec =
usec_to_msec(libinput_event_touch_get_time_usec(tevent));
- wlr_event.slot = libinput_event_touch_get_slot(tevent);
+ wlr_event.touch_id = libinput_event_touch_get_slot(tevent);
wlr_event.x_mm = libinput_event_touch_get_x(tevent);
wlr_event.y_mm = libinput_event_touch_get_y(tevent);
libinput_device_get_size(libinput_dev, &wlr_event.width_mm, &wlr_event.height_mm);
@@ -54,7 +54,7 @@ void handle_touch_up(struct libinput_event *event,
wlr_event.device = wlr_dev;
wlr_event.time_msec =
usec_to_msec(libinput_event_touch_get_time_usec(tevent));
- wlr_event.slot = libinput_event_touch_get_slot(tevent);
+ wlr_event.touch_id = libinput_event_touch_get_slot(tevent);
wl_signal_emit(&wlr_dev->touch->events.up, &wlr_event);
}
@@ -72,7 +72,7 @@ void handle_touch_motion(struct libinput_event *event,
wlr_event.device = wlr_dev;
wlr_event.time_msec =
usec_to_msec(libinput_event_touch_get_time_usec(tevent));
- wlr_event.slot = libinput_event_touch_get_slot(tevent);
+ wlr_event.touch_id = libinput_event_touch_get_slot(tevent);
wlr_event.x_mm = libinput_event_touch_get_x(tevent);
wlr_event.y_mm = libinput_event_touch_get_y(tevent);
libinput_device_get_size(libinput_dev, &wlr_event.width_mm, &wlr_event.height_mm);
@@ -93,6 +93,6 @@ void handle_touch_cancel(struct libinput_event *event,
wlr_event.device = wlr_dev;
wlr_event.time_msec =
usec_to_msec(libinput_event_touch_get_time_usec(tevent));
- wlr_event.slot = libinput_event_touch_get_slot(tevent);
+ wlr_event.touch_id = libinput_event_touch_get_slot(tevent);
wl_signal_emit(&wlr_dev->touch->events.cancel, &wlr_event);
}