mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
types/wlr_tablet_pad: uniformize events name
This commit is contained in:
parent
13d7fa2f03
commit
d1f543a9d8
4 changed files with 11 additions and 11 deletions
|
|
@ -145,7 +145,7 @@ void handle_tablet_pad_button(struct libinput_event *event,
|
|||
struct wlr_tablet_pad *tablet_pad) {
|
||||
struct libinput_event_tablet_pad *pevent =
|
||||
libinput_event_get_tablet_pad_event(event);
|
||||
struct wlr_event_tablet_pad_button wlr_event = { 0 };
|
||||
struct wlr_tablet_pad_button_event wlr_event = { 0 };
|
||||
wlr_event.time_msec =
|
||||
usec_to_msec(libinput_event_tablet_pad_get_time_usec(pevent));
|
||||
wlr_event.button = libinput_event_tablet_pad_get_button_number(pevent);
|
||||
|
|
@ -167,7 +167,7 @@ void handle_tablet_pad_ring(struct libinput_event *event,
|
|||
struct wlr_tablet_pad *tablet_pad) {
|
||||
struct libinput_event_tablet_pad *pevent =
|
||||
libinput_event_get_tablet_pad_event(event);
|
||||
struct wlr_event_tablet_pad_ring wlr_event = { 0 };
|
||||
struct wlr_tablet_pad_ring_event wlr_event = { 0 };
|
||||
wlr_event.time_msec =
|
||||
usec_to_msec(libinput_event_tablet_pad_get_time_usec(pevent));
|
||||
wlr_event.ring = libinput_event_tablet_pad_get_ring_number(pevent);
|
||||
|
|
@ -188,7 +188,7 @@ void handle_tablet_pad_strip(struct libinput_event *event,
|
|||
struct wlr_tablet_pad *tablet_pad) {
|
||||
struct libinput_event_tablet_pad *pevent =
|
||||
libinput_event_get_tablet_pad_event(event);
|
||||
struct wlr_event_tablet_pad_strip wlr_event = { 0 };
|
||||
struct wlr_tablet_pad_strip_event wlr_event = { 0 };
|
||||
wlr_event.time_msec =
|
||||
usec_to_msec(libinput_event_tablet_pad_get_time_usec(pevent));
|
||||
wlr_event.strip = libinput_event_tablet_pad_get_strip_number(pevent);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue