GetNSelections has an out parameter, not an in
authorMike Gorse <mgorse@novell.com>
Fri, 25 Feb 2011 15:29:27 +0000 (09:29 -0600)
committerMike Gorse <mgorse@novell.com>
Fri, 25 Feb 2011 15:29:27 +0000 (09:29 -0600)
atspi/atspi-text.c

index 2b9fa48..c5589b3 100644 (file)
@@ -651,7 +651,7 @@ atspi_text_get_n_selections (AtspiText *obj, GError **error)
 
   g_return_val_if_fail (obj != NULL, -1);
 
-  _atspi_dbus_call (obj, atspi_interface_text, "GetNSelections", error, "i", &retval);
+  _atspi_dbus_call (obj, atspi_interface_text, "GetNSelections", error, "=>i", &retval);
 
   return retval;
 }