summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Millán Soto <fid@gpul.org>2012-01-04 13:48:48 +0100
committerMike Gorse <mgorse@novell.com>2012-01-05 15:02:57 -0600
commit9fb0a92c4e05a962d235042e83b0aae5130c34cf (patch)
tree847db7b69c430a07b67c04c81fe0d9cce2b9df99
parentbe3d5baf37515a76cd3db243665c84e26f30422f (diff)
downloadat-spi2-core-9fb0a92c4e05a962d235042e83b0aae5130c34cf.tar.gz
Using value instead of memory address when calling _atspi_dbus_call
The following functions are changed: atspi_selection_select_child, atspi_selection_deselect_child and atspi_selection_is_child_selected Fixes bug 667254
-rw-r--r--atspi/atspi-selection.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/atspi/atspi-selection.c b/atspi/atspi-selection.c
index bc5e19e1..7318989a 100644
--- a/atspi/atspi-selection.c
+++ b/atspi/atspi-selection.c
@@ -105,7 +105,7 @@ atspi_selection_select_child (AtspiSelection *obj,
g_return_val_if_fail (obj != NULL, FALSE);
- _atspi_dbus_call (obj, atspi_interface_selection, "SelectChild", error, "i=>b", &d_child_index, &retval);
+ _atspi_dbus_call (obj, atspi_interface_selection, "SelectChild", error, "i=>b", d_child_index, &retval);
return retval;
}
@@ -163,7 +163,7 @@ atspi_selection_deselect_child (AtspiSelection *obj,
g_return_val_if_fail (obj != NULL, FALSE);
- _atspi_dbus_call (obj, atspi_interface_selection, "DeselectChild", error, "i=>b", &d_child_index, &retval);
+ _atspi_dbus_call (obj, atspi_interface_selection, "DeselectChild", error, "i=>b", d_child_index, &retval);
return retval;
}
@@ -190,7 +190,7 @@ atspi_selection_is_child_selected (AtspiSelection *obj,
g_return_val_if_fail (obj != NULL, FALSE);
- _atspi_dbus_call (obj, atspi_interface_selection, "IsChildSelected", error, "i=>b", &d_child_index, &retval);
+ _atspi_dbus_call (obj, atspi_interface_selection, "IsChildSelected", error, "i=>b", d_child_index, &retval);
return retval;
}