diff options
author | Jonas Ådahl <jadahl@gmail.com> | 2015-03-18 16:37:47 +0800 |
---|---|---|
committer | Jonas Ådahl <jadahl@gmail.com> | 2015-05-05 14:17:11 +0800 |
commit | ee45a55deafb0ab261c950bdd54ad08c311e5931 (patch) | |
tree | 726d27463d671a98006e6810aa47db1caee1b3aa /protocol | |
parent | 49d77d20ae17e1ee8ca462997b3f73a58eceb57f (diff) |
xdg-shell: Move xdg_shell.get_xdg_popup errors to xdg_shell
They are errors that may be as a result of calling get_xdg_popup on an
xdg_shell, not a result of calling a request on xdg_popup.
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Diffstat (limited to 'protocol')
-rw-r--r-- | protocol/xdg-shell.xml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/protocol/xdg-shell.xml b/protocol/xdg-shell.xml index 866e3300..df103c47 100644 --- a/protocol/xdg-shell.xml +++ b/protocol/xdg-shell.xml @@ -50,6 +50,8 @@ <enum name="error"> <entry name="role" value="0" summary="given wl_surface has another role"/> <entry name="defunct_surfaces" value="1" summary="xdg_shell was destroyed before children"/> + <entry name="not_the_topmost_popup" value="2" summary="the client tried to map or destroy a non-topmost popup"/> + <entry name="invalid_popup_parent" value="3" summary="the client specified an invalid popup parent surface"/> </enum> <request name="destroy" type="destructor"> @@ -456,14 +458,6 @@ parent surface. </description> - <enum name="error"> - <description summary="xdg_popup error values"> - These errors can be emitted in response to xdg_popup requests. - </description> - <entry name="not_the_topmost_popup" value="0" summary="The client tried to map or destroy a non-topmost popup"/> - <entry name="invalid_parent" value="1" summary="The client specified an invalid parent surface"/> - </enum> - <request name="destroy" type="destructor"> <description summary="remove xdg_popup interface"> This destroys the popup. Explicitly destroying the xdg_popup |