diff options
author | Robert Ancell <robert.ancell@canonical.com> | 2018-10-08 11:34:43 +1300 |
---|---|---|
committer | Robert Ancell <robert.ancell@canonical.com> | 2018-10-08 11:38:20 +1300 |
commit | dd69c4e0f211fa14f58dcbdf6f1eeaa6913afe83 (patch) | |
tree | b9b11b530f10911d3beeb5fbc7fa46c464f6dd99 /gtk/gtkcellarea.c | |
parent | cbb0d7ba69496ebe8b4b663d9a5572cf11622588 (diff) | |
download | gtk+-dd69c4e0f211fa14f58dcbdf6f1eeaa6913afe83.tar.gz |
GtkBuildable: Fix the type of the user_data in GtkBuildable.custom_tag_end
The previous type was a pointer to a pointer, which seems to be a copy-paste
error from GtkBuildable.custom_tag_start which is an out parameter. It was
always cast in use so this is an API break, but not an ABI one.
Diffstat (limited to 'gtk/gtkcellarea.c')
-rw-r--r-- | gtk/gtkcellarea.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcellarea.c b/gtk/gtkcellarea.c index bccaa06efa..3fc37a3dac 100644 --- a/gtk/gtkcellarea.c +++ b/gtk/gtkcellarea.c @@ -468,7 +468,7 @@ static void gtk_cell_area_buildable_custom_tag_end (GtkBuildable GtkBuilder *builder, GObject *child, const gchar *tagname, - gpointer *data); + gpointer data); /* Used in foreach loop to check if a child renderer is present */ typedef struct { @@ -1575,7 +1575,7 @@ gtk_cell_area_buildable_custom_tag_end (GtkBuildable *buildable, GtkBuilder *builder, GObject *child, const gchar *tagname, - gpointer *data) + gpointer data) { /* Just ignore the boolean return from here */ _gtk_cell_layout_buildable_custom_tag_end (buildable, builder, child, tagname, data); |