diff options
author | emersion <contact@emersion.fr> | 2018-03-13 22:17:25 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-13 22:17:25 +0100 |
commit | ace738dbca9cadb9b9bc5e15aeac19131bab3998 (patch) | |
tree | 9334caf980e8464d3a8c7cfe3803ac46fc28a2e2 /include | |
parent | 149209b72ed069f3c6026e6bf7ffb4ffff0de190 (diff) |
xdg-shell-v6: next_geometry and geometry fields are not longer pointers in wlr_xdg_surface_v6
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_xdg_shell_v6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_xdg_shell_v6.h b/include/wlr/types/wlr_xdg_shell_v6.h index 2358feec..d8503d28 100644 --- a/include/wlr/types/wlr_xdg_shell_v6.h +++ b/include/wlr/types/wlr_xdg_shell_v6.h @@ -109,8 +109,8 @@ struct wlr_xdg_surface_v6 { char *app_id; bool has_next_geometry; - struct wlr_box *next_geometry; - struct wlr_box *geometry; // TODO: should not be a pointer + struct wlr_box next_geometry; + struct wlr_box geometry; struct wl_listener surface_destroy_listener; |