diff options
author | emersion <contact@emersion.fr> | 2017-10-21 12:35:51 +0200 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-10-21 12:35:51 +0200 |
commit | c8570d0e426c60fb66fba4ccc8e74af73933e615 (patch) | |
tree | 7810f3a64f3f16ea1ae094593684561c564a77d1 /include | |
parent | 1782d5e7b7dc5e494cfee72b758d5fa8114aecc8 (diff) |
Remove wl_list_init when using wl_signal_add
Diffstat (limited to 'include')
-rw-r--r-- | include/rootston/view.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/rootston/view.h b/include/rootston/view.h index ad722225..7d297329 100644 --- a/include/rootston/view.h +++ b/include/rootston/view.h @@ -8,13 +8,12 @@ struct roots_wl_shell_surface { struct roots_view *view; + // TODO: Maybe destroy listener should go in roots_view struct wl_listener destroy; struct wl_listener ping_timeout; struct wl_listener request_move; struct wl_listener request_resize; - struct wl_listener request_set_fullscreen; - struct wl_listener request_set_maximized; struct wl_listener surface_commit; }; @@ -25,15 +24,13 @@ struct roots_xdg_surface_v6 { // TODO: Maybe destroy listener should go in roots_view struct wl_listener commit; struct wl_listener destroy; - struct wl_listener ping_timeout; - struct wl_listener request_minimize; struct wl_listener request_move; struct wl_listener request_resize; - struct wl_listener request_show_window_menu; }; struct roots_xwayland_surface { struct roots_view *view; + // TODO: Maybe destroy listener should go in roots_view struct wl_listener destroy; struct wl_listener request_configure; |