libweston-desktop: rename weston_desktop_client_destroy()

This function here is a wl_resource destructor, but we will need another
function for externally triggered destroy when wl_resource does not
exist.

Rename the existing function, because the old name fits better the new
function to be written.

Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.com>
dev
Pekka Paalanen 4 years ago
parent 6a0a3a014f
commit 5a6604a7a2
  1. 9
      libweston-desktop/client.c

@ -49,7 +49,7 @@ weston_desktop_client_add_destroy_listener(struct weston_desktop_client *client,
} }
static void static void
weston_desktop_client_destroy(struct wl_resource *resource) weston_desktop_client_handle_destroy(struct wl_resource *resource)
{ {
struct weston_desktop_client *client = struct weston_desktop_client *client =
wl_resource_get_user_data(resource); wl_resource_get_user_data(resource);
@ -117,13 +117,12 @@ weston_desktop_client_create(struct weston_desktop *desktop,
if (dispatcher != NULL) if (dispatcher != NULL)
wl_resource_set_dispatcher(client->resource, dispatcher, wl_resource_set_dispatcher(client->resource, dispatcher,
weston_desktop_client_destroy, client, weston_desktop_client_handle_destroy, client,
weston_desktop_client_destroy); weston_desktop_client_handle_destroy);
else else
wl_resource_set_implementation(client->resource, implementation, wl_resource_set_implementation(client->resource, implementation,
client, client,
weston_desktop_client_destroy); weston_desktop_client_handle_destroy);
display = wl_client_get_display(client->client); display = wl_client_get_display(client->client);
loop = wl_display_get_event_loop(display); loop = wl_display_get_event_loop(display);

Loading…
Cancel
Save