summaryrefslogtreecommitdiff
path: root/glib/gnode.h
diff options
context:
space:
mode:
authorTestingPlant <49836-TestingPlant@users.noreply.gitlab.gnome.org>2022-05-21 21:16:24 +0000
committerTestingPlant <49836-TestingPlant@users.noreply.gitlab.gnome.org>2022-05-22 01:06:37 +0000
commitda7a31a052614edd2cc87518585ff371cbb0f204 (patch)
treedebe7d88d02e6a4dbee6ee85d1493ced6ffdfaf7 /glib/gnode.h
parentb49f36f69f21027917a0958d8e30a8d24458c535 (diff)
downloadglib-da7a31a052614edd2cc87518585ff371cbb0f204.tar.gz
Rename user data parameters 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 updates parameters missed in GNOME/glib!2633.
Diffstat (limited to 'glib/gnode.h')
-rw-r--r--glib/gnode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/glib/gnode.h b/glib/gnode.h
index 94ab99621..b3f89f02a 100644
--- a/glib/gnode.h
+++ b/glib/gnode.h
@@ -58,9 +58,9 @@ typedef enum
} GTraverseType;
typedef gboolean (*GNodeTraverseFunc) (GNode *node,
- gpointer data);
+ gpointer user_data);
typedef void (*GNodeForeachFunc) (GNode *node,
- gpointer data);
+ gpointer user_data);
/* N-way tree implementation
*/