diff options
author | Padraig O'Briain <padraigo@src.gnome.org> | 2002-01-28 09:14:43 +0000 |
---|---|---|
committer | Padraig O'Briain <padraigo@src.gnome.org> | 2002-01-28 09:14:43 +0000 |
commit | 6176cd13b012b9985f72a42be5c25fc44cb72f32 (patch) | |
tree | 6d7f86ae862ab361cfc130f265e2ff21d2b22d2f | |
parent | 2df22298d965e2191a9fe4d220017e1a58071bb6 (diff) | |
download | atk-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>)
-rw-r--r-- | ChangeLog | 11 | ||||
-rwxr-xr-x | atk/atkobject.h | 8 |
2 files changed, 13 insertions, 6 deletions
@@ -1,3 +1,10 @@ +2002-01-28 Padraig O'Briain <padraig.obriain@sun.com> + + * 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>) + 2002-01-10 Bill Haneman <bill.haneman@sun.com> * configure.in: @@ -6,12 +13,12 @@ Wed Jan 9 11:26:56 2002 Owen Taylor <otaylor@redhat.com> * atk/Makefile.am (s-enum-types-h): Include glib-object.h, - Add G_BEGIN_DECLS/END_DECLS to atk-enum-types.h. (#68325, + Add G_BEGIN_DECLS/END_DECLS to atk-enum-types.h. (#61845, Mikael Hermansson) 2002-01-07 Padraig O'Briain <padraig.obriain@sun.com> - * atk/atkcomponent.c (atk_component_add_focus_handler):1 + * atk/atkcomponent.c (atk_component_add_focus_handler): Add comments to clarify behavior if handler has already been added * docs/tmpl/atktext.sgml: 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); /* |