projects
/
platform
/
upstream
/
at-spi2-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87e41fc
)
Fix atspi_component_contains
author
Mike Gorse
<mgorse@linux-megc.site>
Wed, 23 Oct 2013 20:47:17 +0000
(15:47 -0500)
committer
Mike 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
patch
|
blob
|
history
diff --git
a/atspi/atspi-component.c
b/atspi/atspi-component.c
index 24d74d41380e0cce511be6d77646cf3c075e14f1..9cdd8967abd711636bd3be98b0fdc342b61cd0ec 100644
(file)
--- 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, "ii
n
=>b", d_x, d_y, d_ctype, &retval);
+ _atspi_dbus_call (obj, atspi_interface_component, "Contains", error, "ii
u
=>b", d_x, d_y, d_ctype, &retval);
return retval;
}