diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-03-09 16:50:20 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-03-09 16:50:20 -0500 |
| commit | 907d264226d82f119ad7edf32338b15a569ed1d6 (patch) | |
| tree | b7988cd9caef571636f775a78c8e39f95b610d0a /include | |
| parent | 0162664dba6d5ed86c86a1974077fec0fd3366c5 (diff) | |
sway/input: follow up wlroots input device events renaming
Diffstat (limited to 'include')
| -rw-r--r-- | include/sway/input/cursor.h | 2 | ||||
| -rw-r--r-- | include/sway/input/seat.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/sway/input/cursor.h b/include/sway/input/cursor.h index cd4d9270..3a71a35f 100644 --- a/include/sway/input/cursor.h +++ b/include/sway/input/cursor.h @@ -112,7 +112,7 @@ void dispatch_cursor_button(struct sway_cursor *cursor, enum wlr_button_state state); void dispatch_cursor_axis(struct sway_cursor *cursor, - struct wlr_event_pointer_axis *event); + struct wlr_pointer_axis_event *event); void cursor_set_image(struct sway_cursor *cursor, const char *image, struct wl_client *client); diff --git a/include/sway/input/seat.h b/include/sway/input/seat.h index 77c2278d..50c4be9b 100644 --- a/include/sway/input/seat.h +++ b/include/sway/input/seat.h @@ -18,7 +18,7 @@ struct sway_seatop_impl { enum wlr_button_state state); void (*pointer_motion)(struct sway_seat *seat, uint32_t time_msec); void (*pointer_axis)(struct sway_seat *seat, - struct wlr_event_pointer_axis *event); + struct wlr_pointer_axis_event *event); void (*rebase)(struct sway_seat *seat, uint32_t time_msec); void (*tablet_tool_motion)(struct sway_seat *seat, struct sway_tablet_tool *tool, uint32_t time_msec); @@ -274,7 +274,7 @@ void seatop_button(struct sway_seat *seat, uint32_t time_msec, void seatop_pointer_motion(struct sway_seat *seat, uint32_t time_msec); void seatop_pointer_axis(struct sway_seat *seat, - struct wlr_event_pointer_axis *event); + struct wlr_pointer_axis_event *event); void seatop_tablet_tool_tip(struct sway_seat *seat, struct sway_tablet_tool *tool, uint32_t time_msec, |
