From e9450a994764a89f47e3dbb7b06c754140047e43 Mon Sep 17 00:00:00 2001 From: Isaac Freund Date: Thu, 24 Apr 2025 13:19:35 +0200 Subject: [PATCH] xdg-activation: make wl_global public This is currently inconsistent with everything else in wlroots. --- include/wlr/types/wlr_xdg_activation_v1.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wlr/types/wlr_xdg_activation_v1.h b/include/wlr/types/wlr_xdg_activation_v1.h index 6c1d5b8ad..c9eda5be2 100644 --- a/include/wlr/types/wlr_xdg_activation_v1.h +++ b/include/wlr/types/wlr_xdg_activation_v1.h @@ -39,6 +39,7 @@ struct wlr_xdg_activation_token_v1 { }; struct wlr_xdg_activation_v1 { + struct wl_global *global; uint32_t token_timeout_msec; // token timeout in milliseconds (0 to disable) struct wl_list tokens; // wlr_xdg_activation_token_v1.link @@ -51,7 +52,6 @@ struct wlr_xdg_activation_v1 { struct { struct wl_display *display; - struct wl_global *global; struct wl_listener display_destroy; } WLR_PRIVATE;