diff options
author | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-12-04 16:53:28 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-12-04 16:53:28 +0900 |
commit | 52ba4f49c52a3157b595ea5da8c2a8f228094e28 (patch) | |
tree | 9f6c4eed50efa46b2dbdf7d7673b64e91f78099b /gtk/gtkcelllayout.c | |
parent | c8c5ed8fa1d20ee93c45324138f85da76e968f43 (diff) | |
download | gtk+-52ba4f49c52a3157b595ea5da8c2a8f228094e28.tar.gz |
Added boolean return to GtkCellLayout buildable custom tag end shared private function.
Diffstat (limited to 'gtk/gtkcelllayout.c')
-rw-r--r-- | gtk/gtkcelllayout.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/gtkcelllayout.c b/gtk/gtkcelllayout.c index e0d8652055..b2182d276e 100644 --- a/gtk/gtkcelllayout.c +++ b/gtk/gtkcelllayout.c @@ -745,7 +745,7 @@ _gtk_cell_layout_buildable_custom_tag_start (GtkBuildable *buildable, return FALSE; } -void +gboolean _gtk_cell_layout_buildable_custom_tag_end (GtkBuildable *buildable, GtkBuilder *builder, GObject *child, @@ -759,13 +759,14 @@ _gtk_cell_layout_buildable_custom_tag_end (GtkBuildable *buildable, attr_data = (AttributesSubParserData*)data; g_assert (!attr_data->attr_name); g_slice_free (AttributesSubParserData, attr_data); - return; + return TRUE; } else if (strcmp (tagname, "cell-packing") == 0) { g_slice_free (CellPackingSubParserData, (gpointer)data); - return; + return TRUE; } + return FALSE; } void |