Switch output storing from list_t to wl_list

This commit is contained in:
Brian Ashworth 2018-06-06 20:10:42 -04:00
parent a0bbe67076
commit e072fbc6d9
6 changed files with 12 additions and 19 deletions

View file

@ -29,6 +29,8 @@ struct sway_output {
struct wl_listener damage_destroy;
struct wl_listener damage_frame;
struct wl_list link;
pid_t bg_pid;
};

View file

@ -31,7 +31,7 @@ struct sway_root {
struct wlr_texture *debug_tree;
list_t *outputs;
struct wl_list outputs; // sway_output::link
struct {
struct wl_signal new_container;