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