diff options
author | emersion <contact@emersion.fr> | 2018-03-06 21:50:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-06 21:50:00 +0100 |
commit | 36dcad13d09d63bd321958ed79d479687479f852 (patch) | |
tree | 92f33db4faf0ae3ff1f8345805303fb2c0884dd2 /include/backend/x11.h | |
parent | c986cc24a9bd6f09acb99c1ae4f3b95dc7c560c5 (diff) | |
parent | 3c9fc7c68ec7e0474f40bedc33d55862e03af057 (diff) |
Merge pull request #707 from ascent12/xcb_fixes
Xcb fixes
Diffstat (limited to 'include/backend/x11.h')
-rw-r--r-- | include/backend/x11.h | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/include/backend/x11.h b/include/backend/x11.h index 9e1c8146..840509bf 100644 --- a/include/backend/x11.h +++ b/include/backend/x11.h @@ -17,11 +17,6 @@ struct wlr_x11_output { EGLSurface surf; }; -struct wlr_x11_atom { - xcb_intern_atom_cookie_t cookie; - xcb_intern_atom_reply_t *reply; -}; - struct wlr_x11_backend { struct wlr_backend backend; struct wl_display *wl_display; @@ -44,10 +39,10 @@ struct wlr_x11_backend { struct wl_event_source *frame_timer; struct { - struct wlr_x11_atom wm_protocols; - struct wlr_x11_atom wm_delete_window; - struct wlr_x11_atom net_wm_name; - struct wlr_x11_atom utf8_string; + xcb_atom_t wm_protocols; + xcb_atom_t wm_delete_window; + xcb_atom_t net_wm_name; + xcb_atom_t utf8_string; } atoms; // The time we last received an event |