diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-21 09:40:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-21 09:40:18 -0400 |
commit | ce2f945441155fa9d98935dabd6979304f2d2fbc (patch) | |
tree | 5e6d6aa0d0071093f64987fb4e189668062aa312 /include | |
parent | 17adb2621889284a2917f7a00a1dff2bc96c5b89 (diff) | |
parent | f2c4b80620337e8533ce0986186cc914d45b6dce (diff) |
Merge pull request #303 from emersion/wl-signal-no-list-init
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; |