xproto: fix TranslateCoordinates reply
authorJulien Cristau <jcristau@debian.org>
Thu, 21 Oct 2010 12:59:37 +0000 (14:59 +0200)
committerJulien Danjou <julien@danjou.info>
Thu, 21 Oct 2010 13:17:49 +0000 (15:17 +0200)
dst_x and dst_y are signed values (listed as INT16 in the spec).

Signed-off-by: Julien Cristau <jcristau@debian.org>
Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net>
Signed-off-by: Julien Danjou <julien@danjou.info>
src/xproto.xml

index b6521c3..ae20fde 100644 (file)
@@ -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>