From 8495c0c7adcc3b38f6d4b43929c42ba0c4eaf13f Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 2 Oct 2014 22:01:14 -0400 Subject: [PATCH] GtkSidebar: Don't use internal API This makes it possible to copy the gtksidebar.c source into other projects, for early adopters. --- gtk/gtksidebar.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gtk/gtksidebar.c b/gtk/gtksidebar.c index 707694a2e0..437f69281f 100644 --- a/gtk/gtksidebar.c +++ b/gtk/gtksidebar.c @@ -192,8 +192,7 @@ gtk_sidebar_init (GtkSidebar *sidebar) GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); - _gtk_bin_set_child (GTK_BIN (sidebar), sw); - gtk_widget_set_parent (sw, GTK_WIDGET (sidebar)); + gtk_container_add (GTK_CONTAINER (sidebar), sw); priv->list = GTK_LIST_BOX (gtk_list_box_new ()); gtk_widget_show (GTK_WIDGET (priv->list));