mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-11 13:29:45 -05:00
Make all listeners private
This commit is contained in:
parent
3bbfae73ae
commit
1520be3c5c
44 changed files with 365 additions and 180 deletions
|
|
@ -133,9 +133,6 @@ struct wlr_xwayland_surface {
|
|||
|
||||
struct wlr_surface *surface;
|
||||
struct wlr_addon surface_addon;
|
||||
struct wl_listener surface_commit;
|
||||
struct wl_listener surface_map;
|
||||
struct wl_listener surface_unmap;
|
||||
|
||||
int16_t x, y;
|
||||
uint16_t width, height;
|
||||
|
|
@ -216,6 +213,12 @@ struct wlr_xwayland_surface {
|
|||
} events;
|
||||
|
||||
void *data;
|
||||
|
||||
struct {
|
||||
struct wl_listener surface_commit;
|
||||
struct wl_listener surface_map;
|
||||
struct wl_listener surface_unmap;
|
||||
} WLR_PRIVATE;
|
||||
};
|
||||
|
||||
struct wlr_xwayland_surface_configure_event {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue