[at-spi2-core] Fix atspi_component_contains
- From: Mike Gorse <mgorse src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [at-spi2-core] Fix atspi_component_contains
- Date: Wed, 23 Oct 2013 20:47:27 +0000 (UTC)
commit cd8e72105af476c44618768dff28efafbe93ad9e
Author: Mike Gorse <mgorse linux-megc site>
Date: Wed Oct 23 15:47:17 2013 -0500
Fix atspi_component_contains
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 | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/atspi/atspi-component.c b/atspi/atspi-component.c
index 24d74d4..9cdd896 100644
--- a/atspi/atspi-component.c
+++ b/atspi/atspi-component.c
@@ -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;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]