diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-21 22:00:04 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-10-21 22:02:36 -0400 |
commit | 169b68b17c668fc6d3feec92f3cf72308ba4e99c (patch) | |
tree | 51f0f510d2a145301850fc416122de9616453002 /include/wlr/xwayland.h | |
parent | d3f0878d716011bf158b49b063f9391080c22c8a (diff) |
Rename remaining refs to wlr_list
Diffstat (limited to 'include/wlr/xwayland.h')
-rw-r--r-- | include/wlr/xwayland.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h index 4f309a96..c25d0eb0 100644 --- a/include/wlr/xwayland.h +++ b/include/wlr/xwayland.h @@ -5,7 +5,7 @@ #include <stdbool.h> #include <wlr/types/wlr_compositor.h> #include <xcb/xcb.h> -#include <wlr/util/list.h> +#include <wlr/types/wlr_list.h> #ifdef HAS_XCB_ICCCM #include <xcb/xcb_icccm.h> @@ -79,7 +79,7 @@ struct wlr_xwayland_surface { char *class; char *instance; struct wlr_xwayland_surface *parent; - list_t *state; // list of xcb_atom_t + struct wlr_list *state; // list of xcb_atom_t pid_t pid; xcb_atom_t *window_type; |