summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gorse <mgorse@novell.com>2009-09-02 17:41:06 -0500
committerMike Gorse <mgorse@novell.com>2009-10-30 15:10:58 -0400
commitd911a788b43543245e436df58fc722c306455b28 (patch)
treed01ed7c74ea164bf1d1b0bc84b71f71073584dd7
parent441bd62892a379bfea73f21d7103a3d44a655a22 (diff)
downloadat-spi2-atk-d911a788b43543245e436df58fc722c306455b28.tar.gz
2009-09-02 Mike Gorse <mgorse@novell.com>
Modify GetRowColumnEtentsAtIndex to output the return value first, as is now the convention.
-rw-r--r--atk-adaptor/table-adaptor.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/atk-adaptor/table-adaptor.c b/atk-adaptor/table-adaptor.c
index 845c1a1..f57af53 100644
--- a/atk-adaptor/table-adaptor.c
+++ b/atk-adaptor/table-adaptor.c
@@ -639,11 +639,12 @@ impl_getRowColumnExtentsAtIndex (DBusConnection * bus, DBusMessage * message,
reply = dbus_message_new_method_return (message);
if (reply)
{
- dbus_message_append_args (reply, DBUS_TYPE_INT32, &row, DBUS_TYPE_INT32,
+ dbus_message_append_args (reply, DBUS_TYPE_BOOLEAN, &ret,
+ DBUS_TYPE_INT32, &row, DBUS_TYPE_INT32,
&column, DBUS_TYPE_INT32, &row_extents,
DBUS_TYPE_INT32, &col_extents,
DBUS_TYPE_BOOLEAN, &is_selected,
- DBUS_TYPE_BOOLEAN, &ret, DBUS_TYPE_INVALID);
+ DBUS_TYPE_INVALID);
}
return reply;
}