From 6dbf9f72b686f741d0b210d97813f400ca762475 Mon Sep 17 00:00:00 2001 From: Manuel Stoeckl Date: Fri, 5 Jul 2019 19:42:16 -0400 Subject: [PATCH] protocol: clarify wl_display.delete_id description libwayland-server only sends wl_display.delete_id events when it responds to a client's destruction of a client-allocated object. server-allocated objects are silently removed, as per `wl_resource_destroy`. Signed-off-by: Manuel Stoeckl --- protocol/wayland.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/protocol/wayland.xml b/protocol/wayland.xml index dee0ac10..d1b28be7 100644 --- a/protocol/wayland.xml +++ b/protocol/wayland.xml @@ -101,10 +101,10 @@ This event is used internally by the object ID management - logic. When a client deletes an object, the server will send - this event to acknowledge that it has seen the delete request. - When the client receives this event, it will know that it can - safely reuse the object ID. + logic. When a client deletes an object that it had created, + the server will send this event to acknowledge that it has + seen the delete request. When the client receives this event, + it will know that it can safely reuse the object ID.