aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-12-27 06:50:21 -0500
committerTony Crisci <tony@dubstepdish.com>2017-12-27 06:50:21 -0500
commit5c5f0611c418a39dc39e309679de25775caae030 (patch)
tree0245c8ca61ce4ff531dd296cd30f77233e87388a
parente42d762a88dfa588eea336e5302a2653c81b61bd (diff)
xwayland: role committed
-rw-r--r--include/wlr/xwayland.h1
-rw-r--r--xwayland/xwm.c14
2 files changed, 7 insertions, 8 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h
index acf04595..220b831c 100644
--- a/include/wlr/xwayland.h
+++ b/include/wlr/xwayland.h
@@ -133,7 +133,6 @@ struct wlr_xwayland_surface {
} events;
struct wl_listener surface_destroy;
- struct wl_listener surface_commit;
void *data;
};
diff --git a/xwayland/xwm.c b/xwayland/xwm.c
index 6cbe9bda..a642f164 100644
--- a/xwayland/xwm.c
+++ b/xwayland/xwm.c
@@ -220,7 +220,7 @@ static void wlr_xwayland_surface_destroy(
if (xsurface->surface) {
wl_list_remove(&xsurface->surface_destroy.link);
- wl_list_remove(&xsurface->surface_commit.link);
+ wlr_surface_set_role_committed(xsurface->surface, NULL, NULL);
}
free(xsurface->title);
@@ -515,9 +515,9 @@ static void read_surface_property(struct wlr_xwm *xwm,
free(reply);
}
-static void handle_surface_commit(struct wl_listener *listener, void *data) {
- struct wlr_xwayland_surface *xsurface =
- wl_container_of(listener, xsurface, surface_commit);
+static void handle_surface_commit(struct wlr_surface *wlr_surface,
+ void *role_data) {
+ struct wlr_xwayland_surface *xsurface = role_data;
if (!xsurface->added &&
wlr_surface_has_buffer(xsurface->surface) &&
@@ -558,8 +558,8 @@ static void xwm_map_shell_surface(struct wlr_xwm *xwm,
read_surface_property(xwm, xsurface, props[i]);
}
- xsurface->surface_commit.notify = handle_surface_commit;
- wl_signal_add(&surface->events.commit, &xsurface->surface_commit);
+ wlr_surface_set_role_committed(xsurface->surface, handle_surface_commit,
+ xsurface);
xsurface->surface_destroy.notify = handle_surface_destroy;
wl_signal_add(&surface->events.destroy, &xsurface->surface_destroy);
@@ -690,7 +690,7 @@ static void xwm_handle_unmap_notify(struct wlr_xwm *xwm,
}
if (xsurface->surface) {
- wl_list_remove(&xsurface->surface_commit.link);
+ wlr_surface_set_role_committed(xsurface->surface, NULL, NULL);
wl_list_remove(&xsurface->surface_destroy.link);
}
xsurface->surface = NULL;