summaryrefslogtreecommitdiff
path: root/tests/testtooltips.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-05-02 17:26:54 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-05-04 22:53:08 -0400
commitf59f3551902268600090c0382068103a09184df0 (patch)
treeaa006e0f33df61b714d68d2931f7a3bc64933fac /tests/testtooltips.c
parentb9b1bf85e19fb31fcff2ab6b0dce8d0fffea7e01 (diff)
downloadgtk+-f59f3551902268600090c0382068103a09184df0.tar.gz
Use gtk_window_set_child throughout
Replace all uses of gtk_container_add on windows by gtk_window_set_child.
Diffstat (limited to 'tests/testtooltips.c')
-rw-r--r--tests/testtooltips.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testtooltips.c b/tests/testtooltips.c
index 8696427e2f..88bd6473c6 100644
--- a/tests/testtooltips.c
+++ b/tests/testtooltips.c
@@ -302,7 +302,7 @@ main (int argc, char *argv[])
g_signal_connect (window, "destroy", G_CALLBACK (quit_cb), &done);
box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 3);
- gtk_container_add (GTK_CONTAINER (window), box);
+ gtk_window_set_child (GTK_WINDOW (window), box);
tooltip = g_object_new (my_tooltip_get_type (), NULL);
gtk_widget_set_margin_top (tooltip, 20);