Correct inconsistencies between registered signal parameter types and
authorPadraig O'Briain <padraigo@src.gnome.org>
Mon, 28 Jan 2002 09:14:43 +0000 (09:14 +0000)
committerPadraig O'Briain <padraigo@src.gnome.org>
Mon, 28 Jan 2002 09:14:43 +0000 (09:14 +0000)
* 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>)

ChangeLog
atk/atkobject.h

index c585438..285cb40 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
 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:
index a63b8d9..8202097 100755 (executable)
@@ -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);
   /*