summaryrefslogtreecommitdiff
path: root/atk/atkobject.h
diff options
context:
space:
mode:
authorPadraig O'Briain <padraigo@src.gnome.org>2002-01-28 09:14:43 +0000
committerPadraig O'Briain <padraigo@src.gnome.org>2002-01-28 09:14:43 +0000
commit6176cd13b012b9985f72a42be5c25fc44cb72f32 (patch)
tree6d7f86ae862ab361cfc130f265e2ff21d2b22d2f /atk/atkobject.h
parent2df22298d965e2191a9fe4d220017e1a58071bb6 (diff)
downloadatk-6176cd13b012b9985f72a42be5c25fc44cb72f32.tar.gz
Correct inconsistencies between registered signal parameter types and
* atk/atkobject.h: Correct inconsistencies between registered signal parameter types and default signal handler struct fields (based on patch from Murray Cumming <murray@usa.net>)
Diffstat (limited to 'atk/atkobject.h')
-rwxr-xr-xatk/atkobject.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/atk/atkobject.h b/atk/atkobject.h
index a63b8d9..8202097 100755
--- a/atk/atkobject.h
+++ b/atk/atkobject.h
@@ -357,8 +357,8 @@ void (* initialize) (AtkObject
* children of the object
*/
void (* children_changed) (AtkObject *accessible,
- gint change_index,
- AtkObject *changed_child);
+ guint change_index,
+ gpointer changed_child);
/*
* The signal handler which is executed when there is a focus event
* for an object.
@@ -369,13 +369,13 @@ void (* initialize) (AtkObject
* The signal handler which is executed when there is a property_change
* signal for an object.
*/
- gint (*property_change) (AtkObject *accessible,
+ void (*property_change) (AtkObject *accessible,
AtkPropertyValues *values);
/*
* The signal handler which is executed when there is a state_change
* signal for an object.
*/
- gint (*state_change) (AtkObject *accessible,
+ void (*state_change) (AtkObject *accessible,
const gchar *name,
gboolean state_set);
/*