Fix atspi_component_contains
authorMike Gorse <mgorse@linux-megc.site>
Wed, 23 Oct 2013 20:47:17 +0000 (15:47 -0500)
committerMike Gorse <mgorse@linux-megc.site>
Wed, 23 Oct 2013 20:48:41 +0000 (15:48 -0500)
Per the spec, org.a11y.Atspi.Component.Contains takes a uint32 for the coord
type, not an int16

https://bugzilla.gnome.org/show_bug.cgi?id=710730

atspi/atspi-component.c

index 24d74d4..9cdd896 100644 (file)
@@ -84,7 +84,7 @@ atspi_component_contains (AtspiComponent *obj,
 
   g_return_val_if_fail (obj != NULL, FALSE);
 
-  _atspi_dbus_call (obj, atspi_interface_component, "Contains", error, "iin=>b", d_x, d_y, d_ctype, &retval);
+  _atspi_dbus_call (obj, atspi_interface_component, "Contains", error, "iiu=>b", d_x, d_y, d_ctype, &retval);
 
   return retval;
 }