2009-09-02 Mike Gorse <mgorse@novell.com>
authorMike Gorse <mgorse@novell.com>
Wed, 2 Sep 2009 22:41:06 +0000 (17:41 -0500)
committerMike Gorse <mgorse@novell.com>
Fri, 30 Oct 2009 19:10:58 +0000 (15:10 -0400)
Modify GetRowColumnEtentsAtIndex to output the return value first, as is
now the convention.

atk-adaptor/table-adaptor.c

index 845c1a1..f57af53 100644 (file)
@@ -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;
 }