Blame SOURCES/0001-Fix-atspi_component_contains.patch

f268e4
From b0bb46370f5ddf8e6273cd80d0047ea0b413a9c6 Mon Sep 17 00:00:00 2001
f268e4
From: Mike Gorse <mgorse@linux-megc.site>
f268e4
Date: Wed, 23 Oct 2013 15:47:17 -0500
f268e4
Subject: [PATCH] Fix atspi_component_contains
f268e4
f268e4
Per the spec, org.a11y.Atspi.Component.Contains takes a uint32 for the coord
f268e4
type, not an int16
f268e4
f268e4
https://bugzilla.gnome.org/show_bug.cgi?id=710730
f268e4
---
f268e4
 atspi/atspi-component.c | 2 +-
f268e4
 1 file changed, 1 insertion(+), 1 deletion(-)
f268e4
f268e4
diff --git a/atspi/atspi-component.c b/atspi/atspi-component.c
f268e4
index 24d74d4..9cdd896 100644
f268e4
--- a/atspi/atspi-component.c
f268e4
+++ b/atspi/atspi-component.c
f268e4
@@ -84,7 +84,7 @@ atspi_component_contains (AtspiComponent *obj,
f268e4
 
f268e4
   g_return_val_if_fail (obj != NULL, FALSE);
f268e4
 
f268e4
-  _atspi_dbus_call (obj, atspi_interface_component, "Contains", error, "iin=>b", d_x, d_y, d_ctype, &retval);
f268e4
+  _atspi_dbus_call (obj, atspi_interface_component, "Contains", error, "iiu=>b", d_x, d_y, d_ctype, &retval);
f268e4
 
f268e4
   return retval;
f268e4
 }
f268e4
-- 
f268e4
1.8.3.1
f268e4