diff options
author | Markus Ongyerth <ongy@ongy.net> | 2018-06-24 20:56:39 +0200 |
---|---|---|
committer | Markus Ongyerth <ongy@ongy.net> | 2018-07-14 09:52:05 +0200 |
commit | 43b20bfea2070df78ba7cb12a78a5f7a42dd21f5 (patch) | |
tree | 39d4a5cbc911de6d0750e50c94fb43022bf41413 /include | |
parent | 9313ac1068105286a9541e540bd93cd2b2d5e5e9 (diff) |
First feedback pass from acrisci
Diffstat (limited to 'include')
-rw-r--r-- | include/types/wlr_tablet_v2.h | 4 | ||||
-rw-r--r-- | include/wlr/types/wlr_tablet_v2.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/types/wlr_tablet_v2.h b/include/types/wlr_tablet_v2.h index f2d9b8e4..4b9e727d 100644 --- a/include/types/wlr_tablet_v2.h +++ b/include/types/wlr_tablet_v2.h @@ -26,7 +26,7 @@ struct wlr_tablet_seat_client_v2 { struct wl_resource *resource; struct wlr_tablet_manager_client_v2 *client; - struct wlr_seat_client *seat; + struct wlr_seat_client *seat_client; struct wl_listener seat_client_destroy; @@ -85,7 +85,7 @@ struct wlr_tablet_tool_client_v2 *tablet_tool_client_from_resource(struct wl_res void add_tablet_tool_client(struct wlr_tablet_seat_client_v2 *seat, struct wlr_tablet_v2_tablet_tool *tool); struct wlr_tablet_seat_client_v2 *tablet_seat_client_from_resource(struct wl_resource *resource); -void wlr_tablet_seat_client_v2_destroy(struct wl_resource *resource); +void tablet_seat_client_v2_destroy(struct wl_resource *resource); struct wlr_tablet_seat_v2 *get_or_create_tablet_seat( struct wlr_tablet_manager_v2 *manager, struct wlr_seat *wlr_seat); diff --git a/include/wlr/types/wlr_tablet_v2.h b/include/wlr/types/wlr_tablet_v2.h index bebf8a19..afa74d05 100644 --- a/include/wlr/types/wlr_tablet_v2.h +++ b/include/wlr/types/wlr_tablet_v2.h @@ -137,7 +137,7 @@ void wlr_send_tablet_v2_tablet_tool_slider( struct wlr_tablet_v2_tablet_tool *tool, double position); void wlr_send_tablet_v2_tablet_tool_wheel( - struct wlr_tablet_v2_tablet_tool *tool, double delta, int32_t clicks); + struct wlr_tablet_v2_tablet_tool *tool, double degrees, int32_t clicks); void wlr_send_tablet_v2_tablet_tool_proximity_out( struct wlr_tablet_v2_tablet_tool *tool); |