aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/xwayland.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-10-21 22:07:44 -0400
committerGitHub <noreply@github.com>2017-10-21 22:07:44 -0400
commite8f92838943920addcb0f80894f4e152eafa5ae4 (patch)
treec9cd07e837b454ff227fde4d7511a98c805bca27 /include/wlr/xwayland.h
parentd4e311a1adeee7cfd2a4404d716f3e0237ead607 (diff)
parent16f35ecbeacd685e7d9905a7867d8c950e369f2e (diff)
Merge pull request #298 from raazvvann/heghe/wl_list
Replace list_t with wl_list
Diffstat (limited to 'include/wlr/xwayland.h')
-rw-r--r--include/wlr/xwayland.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h
index 09f9fbac..c25d0eb0 100644
--- a/include/wlr/xwayland.h
+++ b/include/wlr/xwayland.h
@@ -5,6 +5,7 @@
#include <stdbool.h>
#include <wlr/types/wlr_compositor.h>
#include <xcb/xcb.h>
+#include <wlr/types/wlr_list.h>
#ifdef HAS_XCB_ICCCM
#include <xcb/xcb_icccm.h>
@@ -78,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;