aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
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 /include/wlr
parentfb18e345a6e4546fe87729962b54cce61759bc71 (diff)
rename touch slot to touch id
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/types/wlr_touch.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/wlr/types/wlr_touch.h b/include/wlr/types/wlr_touch.h
index 072e25fd..2925fd01 100644
--- a/include/wlr/types/wlr_touch.h
+++ b/include/wlr/types/wlr_touch.h
@@ -22,7 +22,7 @@ struct wlr_touch {
struct wlr_event_touch_down {
struct wlr_input_device *device;
uint32_t time_msec;
- int32_t slot;
+ int32_t touch_id;
double x_mm, y_mm;
double width_mm, height_mm;
};
@@ -30,13 +30,13 @@ struct wlr_event_touch_down {
struct wlr_event_touch_up {
struct wlr_input_device *device;
uint32_t time_msec;
- int32_t slot;
+ int32_t touch_id;
};
struct wlr_event_touch_motion {
struct wlr_input_device *device;
uint32_t time_msec;
- int32_t slot;
+ int32_t touch_id;
double x_mm, y_mm;
double width_mm, height_mm;
};
@@ -44,7 +44,7 @@ struct wlr_event_touch_motion {
struct wlr_event_touch_cancel {
struct wlr_input_device *device;
uint32_t time_msec;
- int32_t slot;
+ int32_t touch_id;
};
#endif