diff options
author | Kristian Høgsberg <krh@bitplanet.net> | 2011-08-19 16:57:48 -0400 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2011-08-27 12:06:11 -0400 |
commit | cc6fd94d6a5743eb94b52f1887557305784525c9 (patch) | |
tree | 31455a407711ddbaa2994182a32892b76857c523 /protocol/wayland.xml | |
parent | c4774d55e91a722e29326c30ab49dcc3850e0a00 (diff) |
Always allocate a new wl_resource when binding an object
Previously we would bind some resources into multiple client hash tables.
Diffstat (limited to 'protocol/wayland.xml')
-rw-r--r-- | protocol/wayland.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocol/wayland.xml b/protocol/wayland.xml index ac1e2e5..70b505d 100644 --- a/protocol/wayland.xml +++ b/protocol/wayland.xml @@ -66,8 +66,8 @@ server will always announce an object before the object sends out events. --> <event name="global"> - <arg name="id" type="uint" interface="wl_object"/> - <arg name="name" type="string"/> + <arg name="name" type="uint" interface="wl_object"/> + <arg name="interface" type="string"/> <arg name="version" type="uint"/> </event> @@ -109,7 +109,7 @@ </enum> <event name="token_visual"> - <arg name="visual" type="new_id" interface="wl_visual"/> + <arg name="name" type="uint"/> <arg name="token" type="uint"/> </event> </interface> |