[Xcb-commit] src

Julien Danjou jdanjou at kemper.freedesktop.org
Thu Oct 21 06:18:45 PDT 2010


 src/xproto.xml |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 661fe8dd7727c27467e61a0d20dc91557ce3747f
Author: Julien Cristau <jcristau at debian.org>
Date:   Thu Oct 21 14:59:37 2010 +0200

    xproto: fix TranslateCoordinates reply
    
    dst_x and dst_y are signed values (listed as INT16 in the spec).
    
    Signed-off-by: Julien Cristau <jcristau at debian.org>
    Reviewed-by: Mikhail Gusarov <dottedmag at dottedmag.net>
    Signed-off-by: Julien Danjou <julien at danjou.info>

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>
 


More information about the xcb-commit mailing list