aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/view.h
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2017-09-27 14:48:53 +0200
committeremersion <contact@emersion.fr>2017-09-27 14:48:53 +0200
commitacf58e04de5652ed13ec46458a39a4dd97ba3b78 (patch)
tree8235e75540ab66ea3fb2f42b0f12f2036b169407 /include/rootston/view.h
parented9a43c2134f19ddaa4d8e7c9f680d8a3d8329a6 (diff)
Fix segfault, add wl_shell view
Diffstat (limited to 'include/rootston/view.h')
-rw-r--r--include/rootston/view.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rootston/view.h b/include/rootston/view.h
index b74d1075..eee61563 100644
--- a/include/rootston/view.h
+++ b/include/rootston/view.h
@@ -6,8 +6,8 @@
#include <wlr/types/wlr_xdg_shell_v6.h>
struct roots_wl_shell_surface {
+ struct roots_view *view;
// TODO
- void *_placeholder;
};
struct roots_xdg_surface_v6 {
@@ -34,7 +34,7 @@ struct roots_view {
// TODO: Something for roots-enforced width/height
enum roots_view_type type;
union {
- struct wlr_shell_surface *wl_shell_surface;
+ struct wlr_wl_shell_surface *wl_shell_surface;
struct wlr_xdg_surface_v6 *xdg_surface_v6;
};
union {