summaryrefslogtreecommitdiff
path: root/atk/atkobject.h
diff options
context:
space:
mode:
authorEvan Nemerson <evan@coeus-group.com>2012-10-23 18:21:41 -0700
committerEvan Nemerson <evan@coeus-group.com>2012-12-01 22:49:04 -0800
commitacd2335095bf859d35332db6fdc9c54b53773918 (patch)
tree2553717ef79e0675b400f711dd87e29d6bd80c35 /atk/atkobject.h
parentea8b387dc0649313059c04ab32c3a35109555ed0 (diff)
downloadatk-acd2335095bf859d35332db6fdc9c54b53773918.tar.gz
introspection: merge fixes from Vala bindings
https://bugzilla.gnome.org/show_bug.cgi?id=686746
Diffstat (limited to 'atk/atkobject.h')
-rwxr-xr-xatk/atkobject.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/atk/atkobject.h b/atk/atkobject.h
index bbfebbf..0fa91be 100755
--- a/atk/atkobject.h
+++ b/atk/atkobject.h
@@ -351,15 +351,15 @@ typedef struct _AtkStateSet AtkStateSet;
* @old_value: The old property value, NULL; in some contexts this value is undefined (see note below).
* @new_value: The new value of the named property.
*
- * @note: For most properties the old_value field of AtkPropertyValues will
- * not contain a valid value.
+ * Note: for most properties the old_value field of #AtkPropertyValues
+ * will not contain a valid value.
*
* Currently, the only property for which old_value is used is
* accessible-state; for instance if there is a focus state the
* property change handler will be called for the object which lost the focus
- * with the old_value containing an AtkState value corresponding to focused
+ * with the old_value containing an #AtkState value corresponding to focused
* and the property change handler will be called for the object which
- * received the focus with the new_value containing an AtkState value
+ * received the focus with the new_value containing an #AtkState value
* corresponding to focused.
*
**/
@@ -372,7 +372,7 @@ struct _AtkPropertyValues
typedef struct _AtkPropertyValues AtkPropertyValues;
-typedef gboolean (*AtkFunction) (gpointer data);
+typedef gboolean (*AtkFunction) (gpointer user_data);
/*
* For most properties the old_value field of AtkPropertyValues will
* not contain a valid value.
@@ -385,7 +385,7 @@ typedef gboolean (*AtkFunction) (gpointer data);
* received the focus with the new_value containing an AtkState value
* corresponding to focused.
*/
-typedef void (*AtkPropertyChangeHandler) (AtkObject*, AtkPropertyValues*);
+typedef void (*AtkPropertyChangeHandler) (AtkObject* obj, AtkPropertyValues* vals);
struct _AtkObject