From bd843acde9d3bca0737071cf9f5d15a1ea2f4661 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 7 May 2020 12:52:49 -0400 Subject: [PATCH] Use gtk_info_bar_add_child throughout --- tests/testinfobar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/testinfobar.c b/tests/testinfobar.c index 9145aba9c2..ee7ab749fb 100644 --- a/tests/testinfobar.c +++ b/tests/testinfobar.c @@ -35,8 +35,8 @@ on_activate (GApplication *application, box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 10); info_bar = gtk_info_bar_new (); - gtk_container_add (GTK_CONTAINER (info_bar), - gtk_label_new ("Hello!\nI am a GtkInfoBar")); + gtk_info_bar_add_child (GTK_INFO_BAR (info_bar), + gtk_label_new ("Hello!\nI am a GtkInfoBar")); widget = gtk_toggle_button_new_with_label ("Toggle :visible"); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget), TRUE);