protocol: add better description of wl_pointer.release

Add note about what all wl_pointer.release does. Mainly that
it destroys the proxy object, so programmer must not call
wl_pointer_destroy() on the pointer any further.

Signed-off-by: Marek Chalupa <mchqwerty@gmail.com>
Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
This commit is contained in:
Marek Chalupa 2015-03-30 06:10:22 -04:00 committed by Pekka Paalanen
parent 2d46da10d8
commit c45be3d21e

View File

@ -1560,7 +1560,13 @@
<!-- Version 3 additions -->
<request name="release" type="destructor" since="3">
<description summary="release the pointer object"/>
<description summary="release the pointer object">
Using this request client can tell the server that it is not going to
use the pointer object anymore.
This request destroys the pointer proxy object, so user must not call
wl_pointer_destroy() after using this request.
</description>
</request>
</interface>