From: Corentin Chary Date: Fri, 10 Jun 2011 08:27:16 +0000 (+0200) Subject: Call a new global listener for each existing global X-Git-Tag: 0.85.0~118 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=98d8256b8e67a417eebc314440716e66926adf92;p=platform%2Fupstream%2Fwayland.git Call a new global listener for each existing global Signed-off-by: Corentin Chary --- diff --git a/wayland/wayland-client.c b/wayland/wayland-client.c index 0852662..932f8b4 100644 --- a/wayland/wayland-client.c +++ b/wayland/wayland-client.c @@ -113,6 +113,7 @@ wl_display_add_global_listener(struct wl_display *display, wl_display_global_func_t handler, void *data) { struct wl_global_listener *listener; + struct wl_global *global; listener = malloc(sizeof *listener); if (listener == NULL) @@ -122,6 +123,10 @@ wl_display_add_global_listener(struct wl_display *display, listener->data = data; wl_list_insert(display->global_listener_list.prev, &listener->link); + wl_list_for_each(global, &display->global_list, link) + (*listener->handler)(display, global->id, global->interface, + global->version, listener->data); + return listener; }