Blame SOURCES/0003-Fix-atspi_table_cell_get_position.patch

4fe018
From 282c22945a9a0a8de4043939bfca208dd064d3ae Mon Sep 17 00:00:00 2001
4fe018
From: Mike Gorse <mgorse@suse.com>
4fe018
Date: Wed, 17 Jun 2015 20:22:05 -0500
4fe018
Subject: [PATCH 3/4] Fix atspi_table_cell_get_position
4fe018
4fe018
---
4fe018
 atspi/atspi-table-cell.c | 6 +++---
4fe018
 1 file changed, 3 insertions(+), 3 deletions(-)
4fe018
4fe018
diff --git a/atspi/atspi-table-cell.c b/atspi/atspi-table-cell.c
4fe018
index 934fb19..104801e 100644
4fe018
--- a/atspi/atspi-table-cell.c
4fe018
+++ b/atspi/atspi-table-cell.c
4fe018
@@ -183,9 +183,9 @@ atspi_table_cell_get_position (AtspiTableCell *obj,
4fe018
 
4fe018
   g_return_val_if_fail (obj != NULL, -1);
4fe018
 
4fe018
-  reply = _atspi_dbus_call_partial (obj, "org.freedesktop.DBuss.Properties",
4fe018
-                                    "Get", atspi_interface_table_cell,
4fe018
-                                    "Position");
4fe018
+  reply = _atspi_dbus_call_partial (obj, "org.freedesktop.DBus.Properties",
4fe018
+                                    "Get", NULL, "ss",
4fe018
+                                    atspi_interface_table_cell, "Position");
4fe018
 	  
4fe018
   dbus_message_iter_init (reply, &iter);
4fe018
 
4fe018
-- 
4fe018
2.5.0
4fe018