diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-02-04 12:44:55 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-02-04 12:44:55 -0500 |
commit | 51207489813ebef7f143dcded70fab4a3edff612 (patch) | |
tree | e45da36bd09946f2dc21d44ab78510bf28c6c6c4 /testsuite | |
parent | 25e199e7b789894f020ec740ff4a9419207f6a61 (diff) | |
download | gtk+-51207489813ebef7f143dcded70fab4a3edff612.tar.gz |
Drop GtkButtonBox
This widget does not seem worth keeping,
and we want to get rid of child properties.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/gtk/builder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/gtk/builder.c b/testsuite/gtk/builder.c index 73c2518a6d..2837c4a4ce 100644 --- a/testsuite/gtk/builder.c +++ b/testsuite/gtk/builder.c @@ -965,7 +965,7 @@ test_children (void) action_area = gtk_builder_get_object (builder, "dialog1-action_area"); g_assert (action_area != NULL); - g_assert (GTK_IS_BUTTON_BOX (action_area)); + g_assert (GTK_IS_BOX (action_area)); g_assert (gtk_orientable_get_orientation (GTK_ORIENTABLE (action_area)) == GTK_ORIENTATION_HORIZONTAL); g_assert (gtk_widget_get_parent (GTK_WIDGET (action_area)) != NULL); g_assert (gtk_buildable_get_name (GTK_BUILDABLE (action_area)) != NULL); |