[Xcb] [PATCH xcb-proto] xproto: fix TranslateCoordinates reply
Julien Cristau
jcristau at debian.org
Thu Oct 21 05:59:37 PDT 2010
dst_x and dst_y are signed values (listed as INT16 in the spec).
Signed-off-by: Julien Cristau <jcristau at debian.org>
---
Hopefully this doesn't count as an ABI break...
src/xproto.xml | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/xproto.xml b/src/xproto.xml
index b6521c3..ae20fde 100644
--- a/src/xproto.xml
+++ b/src/xproto.xml
@@ -1296,8 +1296,8 @@ authorization from the authors.
<reply>
<field type="BOOL" name="same_screen" />
<field type="WINDOW" name="child" altenum="Window" />
- <field type="CARD16" name="dst_x" />
- <field type="CARD16" name="dst_y" />
+ <field type="INT16" name="dst_x" />
+ <field type="INT16" name="dst_y" />
</reply>
</request>
--
1.7.1
More information about the Xcb
mailing list