seat/keyboard: constify wlr_seat_keyboard_send_modifiers()

This commit is contained in:
Simon Ser 2022-12-19 10:07:00 +01:00 committed by Isaac Freund
parent f41dcb3a97
commit 12e04d8f83
2 changed files with 2 additions and 2 deletions

View File

@ -510,7 +510,7 @@ void wlr_seat_keyboard_send_key(struct wlr_seat *seat, uint32_t time_msec,
* wlr_seat_keyboard_notify_modifiers() instead. * wlr_seat_keyboard_notify_modifiers() instead.
*/ */
void wlr_seat_keyboard_send_modifiers(struct wlr_seat *seat, void wlr_seat_keyboard_send_modifiers(struct wlr_seat *seat,
struct wlr_keyboard_modifiers *modifiers); const struct wlr_keyboard_modifiers *modifiers);
/** /**
* Send a keyboard enter event to the given surface and consider it to be the * Send a keyboard enter event to the given surface and consider it to be the

View File

@ -192,7 +192,7 @@ static void seat_keyboard_handle_surface_destroy(struct wl_listener *listener,
} }
void wlr_seat_keyboard_send_modifiers(struct wlr_seat *seat, void wlr_seat_keyboard_send_modifiers(struct wlr_seat *seat,
struct wlr_keyboard_modifiers *modifiers) { const struct wlr_keyboard_modifiers *modifiers) {
struct wlr_seat_client *client = seat->keyboard_state.focused_client; struct wlr_seat_client *client = seat->keyboard_state.focused_client;
if (client == NULL) { if (client == NULL) {
return; return;