aboutsummaryrefslogtreecommitdiff
path: root/rootston/wl_shell.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-10-22 10:56:40 -0400
committerDrew DeVault <sir@cmpwn.com>2017-10-22 10:56:40 -0400
commitc5fff08f8a63b37ceb42e15641a14384efd163d2 (patch)
tree313922081c22766308d29dab4c0e32843459a648 /rootston/wl_shell.c
parent799f8b95b72d8ea57386edf5e5e2deb59d06984c (diff)
Forgot to rename these
Diffstat (limited to 'rootston/wl_shell.c')
-rw-r--r--rootston/wl_shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rootston/wl_shell.c b/rootston/wl_shell.c
index 248514f0..88397af8 100644
--- a/rootston/wl_shell.c
+++ b/rootston/wl_shell.c
@@ -110,12 +110,12 @@ void handle_wl_shell_surface(struct wl_listener *listener, void *data) {
view->close = close;
view->desktop = desktop;
roots_surface->view = view;
- list_add(desktop->views, view);
+ wlr_list_add(desktop->views, view);
view_initialize(view);
if (surface->state == WLR_WL_SHELL_SURFACE_STATE_TRANSIENT) {
// we need to map it relative to the parent
- int i = list_seq_find(desktop->views, shell_surface_compare_equals,
+ int i = wlr_list_seq_find(desktop->views, shell_surface_compare_equals,
surface->parent);
if (i != -1) {
struct roots_view *parent = desktop->views->items[i];