diff options
author | Brian Ashworth <bosrsf04@gmail.com> | 2018-06-06 20:10:42 -0400 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2018-06-06 20:11:24 -0400 |
commit | e072fbc6d98784e5610aa88251a15f64e30bbcae (patch) | |
tree | 7de104885aabb49f17739d7631ef6cd4f628e64a /include/sway/tree | |
parent | a0bbe67076b8e32b47a272bc1e96be853006c65d (diff) |
Switch output storing from list_t to wl_list
Diffstat (limited to 'include/sway/tree')
-rw-r--r-- | include/sway/tree/layout.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h index 069a02cc..cd131056 100644 --- a/include/sway/tree/layout.h +++ b/include/sway/tree/layout.h @@ -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; |