summaryrefslogtreecommitdiff
path: root/gladeui/glade-editor-skeleton.c
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.van.berkom@gmail.com>2013-04-13 23:15:50 +0900
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2013-04-14 02:49:36 +0900
commit4aca4c517a969ad93e5b4519f10a318438197bc4 (patch)
treef9ce73f78e0177a93b9525384a9e2a763eb8d4ae /gladeui/glade-editor-skeleton.c
parentb020f69cbdd5606c8e6e3e03e9fa6948a2b3e187 (diff)
downloadglade-4aca4c517a969ad93e5b4519f10a318438197bc4.tar.gz
GladeEditorSkeleton: Fixed chaining up in buildable (for container packing to work)
Diffstat (limited to 'gladeui/glade-editor-skeleton.c')
-rw-r--r--gladeui/glade-editor-skeleton.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/gladeui/glade-editor-skeleton.c b/gladeui/glade-editor-skeleton.c
index 4897142e..be7f1f65 100644
--- a/gladeui/glade-editor-skeleton.c
+++ b/gladeui/glade-editor-skeleton.c
@@ -187,9 +187,6 @@ glade_editor_skeleton_custom_tag_start (GtkBuildable *buildable,
GMarkupParser *parser,
gpointer *data)
{
- if (child)
- return FALSE;
-
if (strcmp (tagname, "child-editors") == 0)
{
EditorParserData *parser_data;
@@ -214,7 +211,7 @@ glade_editor_skeleton_custom_finished (GtkBuildable *buildable,
EditorParserData *editor_data = (EditorParserData *)user_data;
GSList *l;
- if (strcmp (tagname, "child-editors"))
+ if (strcmp (tagname, "child-editors") != 0)
{
parent_buildable_iface->custom_finished (buildable, builder, child,
tagname, user_data);