From 6aa654b728e2f30e2f3ca3c2057fc10161c78161 Mon Sep 17 00:00:00 2001 From: Consolatis <40171-Consolatis@users.noreply.gitlab.freedesktop.org> Date: Sun, 6 Jul 2025 14:08:12 +0200 Subject: [PATCH] wlr_text_input_v3: remove event arguments from header Fixes 2d5492c73770c9de420527df1098fefabe43d689 --- include/wlr/types/wlr_text_input_v3.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/wlr/types/wlr_text_input_v3.h b/include/wlr/types/wlr_text_input_v3.h index f9eb1d7ed..29feb7e6c 100644 --- a/include/wlr/types/wlr_text_input_v3.h +++ b/include/wlr/types/wlr_text_input_v3.h @@ -57,10 +57,10 @@ struct wlr_text_input_v3 { struct wl_list link; struct { - struct wl_signal enable; // struct wlr_text_input_v3 - struct wl_signal commit; // struct wlr_text_input_v3 - struct wl_signal disable; // struct wlr_text_input_v3 - struct wl_signal destroy; // struct wlr_text_input_v3 + struct wl_signal enable; + struct wl_signal commit; + struct wl_signal disable; + struct wl_signal destroy; } events; struct { @@ -75,7 +75,7 @@ struct wlr_text_input_manager_v3 { struct { struct wl_signal new_text_input; // struct wlr_text_input_v3 - struct wl_signal destroy; // struct wlr_text_input_manager_v3 + struct wl_signal destroy; } events; struct {