summaryrefslogtreecommitdiff
path: root/src/compositor.c
diff options
context:
space:
mode:
authorPekka Paalanen <pekka.paalanen@collabora.co.uk>2015-04-17 14:23:38 +0300
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2015-04-30 14:51:40 +0300
commitca79076b03459db80f8f9470fb2d636c01e37953 (patch)
tree3cf5631e00443d87a437f6aa8a7bc8d9f5b1a806 /src/compositor.c
parent08d3fb762527b15b33c3e63cc7ccea45fff9acfe (diff)
downloadweston-ca79076b03459db80f8f9470fb2d636c01e37953.tar.gz
compositor: change weston_surface::destroy_signal argument
Pass 'this' weston_surface as the data argument to weston_surface::destroy_signal listeners. The old &surface->resource was really just an offsetted pointer to the weston_surface anyway. And, because 'resource' happened to be the first member in struct weston_surface, it was actually 'this' weston_surface. The argument type was accidentally changed in commit 26ed73cee858956f6af07c3e4bb49b5514f17b8b from wl_resource* to wl_resource**. Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Diffstat (limited to 'src/compositor.c')
-rw-r--r--src/compositor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compositor.c b/src/compositor.c
index c94f00ff..1c062651 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -1876,7 +1876,7 @@ weston_surface_destroy(struct weston_surface *surface)
assert(surface->resource == NULL);
- wl_signal_emit(&surface->destroy_signal, &surface->resource);
+ wl_signal_emit(&surface->destroy_signal, surface);
assert(wl_list_empty(&surface->subsurface_list_pending));
assert(wl_list_empty(&surface->subsurface_list));
@@ -3483,7 +3483,7 @@ subsurface_handle_surface_destroy(struct wl_listener *listener, void *data)
struct weston_subsurface *sub =
container_of(listener, struct weston_subsurface,
surface_destroy_listener);
- assert(data == &sub->surface->resource);
+ assert(data == sub->surface);
/* The protocol object (wl_resource) is left inert. */
if (sub->resource)
@@ -3498,7 +3498,7 @@ subsurface_handle_parent_destroy(struct wl_listener *listener, void *data)
struct weston_subsurface *sub =
container_of(listener, struct weston_subsurface,
parent_destroy_listener);
- assert(data == &sub->parent->resource);
+ assert(data == sub->parent);
assert(sub->surface != sub->parent);
if (weston_surface_is_mapped(sub->surface))