summaryrefslogtreecommitdiff
path: root/demos/gtk-demo/dnd.c
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2018-12-29 09:49:24 +0100
committerMatthias Clasen <mclasen@redhat.com>2019-01-23 19:30:46 -0500
commite9e40ddb42842174bc566974a10701373f32a11f (patch)
tree029fe073047abbb563b417e1ca640657f2a6f7d7 /demos/gtk-demo/dnd.c
parenta543ed84f6a93a5db87c322cafb0da73444dbc72 (diff)
downloadgtk+-e9e40ddb42842174bc566974a10701373f32a11f.tar.gz
box: Remove gtk_box_pack_start
Diffstat (limited to 'demos/gtk-demo/dnd.c')
-rw-r--r--demos/gtk-demo/dnd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/gtk-demo/dnd.c b/demos/gtk-demo/dnd.c
index e13cc6be95..24d70f9678 100644
--- a/demos/gtk-demo/dnd.c
+++ b/demos/gtk-demo/dnd.c
@@ -352,7 +352,7 @@ do_dnd (GtkWidget *do_widget)
gtk_container_add (GTK_CONTAINER (window), vbox);
fixed = gtk_fixed_new ();
- gtk_box_pack_start (GTK_BOX (vbox), fixed);
+ gtk_container_add (GTK_CONTAINER (vbox), fixed);
gtk_widget_set_hexpand (fixed, TRUE);
gtk_widget_set_vexpand (fixed, TRUE);