Rename all user datas in callbacks to user_data

The user data parameters in callbacks need to be named user_data to
generate correct closure attributes in the introspection data.
This commit is contained in:
TestingPlant 2022-05-05 01:51:48 +00:00
parent 0c6a1af9d6
commit 1422e5f812
3 changed files with 13 additions and 13 deletions

View File

@ -135,8 +135,8 @@ typedef enum
* single dash followed by a single letter (for a short name) or two dashes * single dash followed by a single letter (for a short name) or two dashes
* followed by a long option name. * followed by a long option name.
* @value: The value to be parsed. * @value: The value to be parsed.
* @data: User data added to the #GOptionGroup containing the option when it * @user_data: User data added to the #GOptionGroup containing the option when
* was created with g_option_group_new() * it was created with g_option_group_new()
* @error: A return location for errors. The error code %G_OPTION_ERROR_FAILED * @error: A return location for errors. The error code %G_OPTION_ERROR_FAILED
* is intended to be used for errors in #GOptionArgFunc callbacks. * is intended to be used for errors in #GOptionArgFunc callbacks.
* *
@ -148,15 +148,15 @@ typedef enum
*/ */
typedef gboolean (*GOptionArgFunc) (const gchar *option_name, typedef gboolean (*GOptionArgFunc) (const gchar *option_name,
const gchar *value, const gchar *value,
gpointer data, gpointer user_data,
GError **error); GError **error);
/** /**
* GOptionParseFunc: * GOptionParseFunc:
* @context: The active #GOptionContext * @context: The active #GOptionContext
* @group: The group to which the function belongs * @group: The group to which the function belongs
* @data: User data added to the #GOptionGroup containing the option when it * @user_data: User data added to the #GOptionGroup containing the option when
* was created with g_option_group_new() * it was created with g_option_group_new()
* @error: A return location for error details * @error: A return location for error details
* *
* The type of function that can be called before and after parsing. * The type of function that can be called before and after parsing.
@ -166,22 +166,22 @@ typedef gboolean (*GOptionArgFunc) (const gchar *option_name,
*/ */
typedef gboolean (*GOptionParseFunc) (GOptionContext *context, typedef gboolean (*GOptionParseFunc) (GOptionContext *context,
GOptionGroup *group, GOptionGroup *group,
gpointer data, gpointer user_data,
GError **error); GError **error);
/** /**
* GOptionErrorFunc: * GOptionErrorFunc:
* @context: The active #GOptionContext * @context: The active #GOptionContext
* @group: The group to which the function belongs * @group: The group to which the function belongs
* @data: User data added to the #GOptionGroup containing the option when it * @user_data: User data added to the #GOptionGroup containing the option when
* was created with g_option_group_new() * it was created with g_option_group_new()
* @error: The #GError containing details about the parse error * @error: The #GError containing details about the parse error
* *
* The type of function to be used as callback when a parse error occurs. * The type of function to be used as callback when a parse error occurs.
*/ */
typedef void (*GOptionErrorFunc) (GOptionContext *context, typedef void (*GOptionErrorFunc) (GOptionContext *context,
GOptionGroup *group, GOptionGroup *group,
gpointer data, gpointer user_data,
GError **error); GError **error);
/** /**

View File

@ -53,7 +53,7 @@ typedef gboolean (*GTraverseFunc) (gpointer key,
/** /**
* GTraverseNodeFunc: * GTraverseNodeFunc:
* @node: a #GTreeNode * @node: a #GTreeNode
* @data: user data passed to g_tree_foreach_node() * @user_data: user data passed to g_tree_foreach_node()
* *
* Specifies the type of function passed to g_tree_foreach_node(). It is * Specifies the type of function passed to g_tree_foreach_node(). It is
* passed each node, together with the @user_data parameter passed to * passed each node, together with the @user_data parameter passed to
@ -64,7 +64,7 @@ typedef gboolean (*GTraverseFunc) (gpointer key,
* Since: 2.68 * Since: 2.68
*/ */
typedef gboolean (*GTraverseNodeFunc) (GTreeNode *node, typedef gboolean (*GTraverseNodeFunc) (GTreeNode *node,
gpointer data); gpointer user_data);
/* Balanced binary trees /* Balanced binary trees
*/ */

View File

@ -166,7 +166,7 @@ typedef void (*GFreeFunc) (gpointer data);
/** /**
* GTranslateFunc: * GTranslateFunc:
* @str: the untranslated string * @str: the untranslated string
* @data: user data specified when installing the function, e.g. * @user_data: user data specified when installing the function, e.g.
* in g_option_group_set_translate_func() * in g_option_group_set_translate_func()
* *
* The type of functions which are used to translate user-visible * The type of functions which are used to translate user-visible
@ -176,7 +176,7 @@ typedef void (*GFreeFunc) (gpointer data);
* The returned string is owned by GLib and must not be freed. * The returned string is owned by GLib and must not be freed.
*/ */
typedef const gchar * (*GTranslateFunc) (const gchar *str, typedef const gchar * (*GTranslateFunc) (const gchar *str,
gpointer data); gpointer user_data);
/* Define some mathematical constants that aren't available /* Define some mathematical constants that aren't available