[gtk+/composite-templates-new: 1/33] GtkScale: Properly chain up in GtkBuildableIface->custom_finished()



commit 38dc4733c0bf3387363722ffb20a1b88559195c8
Author: Tristan Van Berkom <tristanvb openismus com>
Date:   Mon Apr 8 21:04:50 2013 +0900

    GtkScale: Properly chain up in GtkBuildableIface->custom_finished()
    
    This was causing <style> markup to be ignored when specified
    on GtkScale types.

 gtk/gtkscale.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)
---
diff --git a/gtk/gtkscale.c b/gtk/gtkscale.c
index 1af2f53..4f739d8 100644
--- a/gtk/gtkscale.c
+++ b/gtk/gtkscale.c
@@ -1903,4 +1903,10 @@ gtk_scale_buildable_custom_finished (GtkBuildable *buildable,
       g_slist_free (marks_data->marks);
       g_slice_free (MarksSubparserData, marks_data);
     }
+  else
+    {
+      parent_buildable_iface->custom_finished (buildable, builder, child,
+                                              tagname, user_data);
+    }
+
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]