diff options
author | emersion <contact@emersion.fr> | 2017-09-28 23:26:31 +0200 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-09-28 23:26:31 +0200 |
commit | b7927078e9b2dec995eaec8240a87b683349aefb (patch) | |
tree | 2d25f3015af3301949a2087520664c91538843e5 /include/rootston | |
parent | c92199a953a44b5a11b102e76d2b9e106a47a7d4 (diff) |
x11 -> xwayland, window -> surface, fix some calloc sizes and wrong types
Diffstat (limited to 'include/rootston')
-rw-r--r-- | include/rootston/view.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/rootston/view.h b/include/rootston/view.h index 8d4d69c5..9cc2fe04 100644 --- a/include/rootston/view.h +++ b/include/rootston/view.h @@ -27,7 +27,7 @@ struct roots_xdg_surface_v6 { struct wl_listener request_show_window_menu; }; -struct roots_x11_surface { +struct roots_xwayland_surface { struct roots_view *view; // TODO: Maybe destroy listener should go in roots_view struct wl_listener destroy; @@ -48,12 +48,12 @@ struct roots_view { union { struct wlr_wl_shell_surface *wl_shell_surface; struct wlr_xdg_surface_v6 *xdg_surface_v6; - struct wlr_x11_window *x11_window; + struct wlr_xwayland_surface *xwayland_surface; }; union { struct roots_wl_shell_surface *roots_wl_shell_surface; struct roots_xdg_surface_v6 *roots_xdg_surface_v6; - struct roots_x11_surface *roots_x11_surface; + struct roots_xwayland_surface *roots_xwayland_surface; }; struct wlr_surface *wlr_surface; struct wl_list link; |