diff options
author | Seunghun Lee <shiin.lee@samsung.com> | 2024-06-17 13:44:28 +0900 |
---|---|---|
committer | Seunghun Lee <shiin.lee@samsung.com> | 2024-06-17 13:44:28 +0900 |
commit | a8f26100279e91276a851bdced13ed426a26d1a3 (patch) | |
tree | e41b77e053ed55860210051f58e1793a979e470f | |
parent | 284b54454537df89f8c84dece89eff9a224027bc (diff) | |
download | wayland-extension-a8f26100279e91276a851bdced13ed426a26d1a3.tar.gz wayland-extension-a8f26100279e91276a851bdced13ed426a26d1a3.tar.bz2 wayland-extension-a8f26100279e91276a851bdced13ed426a26d1a3.zip |
wtz_video_shell: Fix value of error enum
Change-Id: I9dc3b80e8832076a7857b7360c550f1726fc26dc
-rw-r--r-- | protocol/tizen/wtz-video-shell.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocol/tizen/wtz-video-shell.xml b/protocol/tizen/wtz-video-shell.xml index 3bf19ca..95f11ce 100644 --- a/protocol/tizen/wtz-video-shell.xml +++ b/protocol/tizen/wtz-video-shell.xml @@ -96,8 +96,8 @@ <interface name="wtz_video_surface" version="1"> <enum name="error"> <entry name="source_exists" value="0" summary=""/> - <entry name="role" value="0" summary="given surface has another role"/> - <entry name="no_surface" value="0" summary="the wl_surface was destroyed"/> + <entry name="role" value="1" summary="given surface has another role"/> + <entry name="no_surface" value="2" summary="the wl_surface was destroyed"/> </enum> <request name="destroy" type="destructor"> |