summaryrefslogtreecommitdiff
path: root/testsuite/gtk/builder.c
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2016-10-03 19:52:23 +0200
committerBenjamin Otte <otte@redhat.com>2016-10-16 18:17:21 +0200
commitfb3d9022ad98049c887cec5aeffd6b73deb043ba (patch)
tree48b9fb6e72eaf51d754d3c23b56a459f0a50b693 /testsuite/gtk/builder.c
parent9a5de9618787605de832e4c5ccbfd298eb73db97 (diff)
downloadgtk+-fb3d9022ad98049c887cec5aeffd6b73deb043ba.tar.gz
Remove GtkHBox
Diffstat (limited to 'testsuite/gtk/builder.c')
-rw-r--r--testsuite/gtk/builder.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/testsuite/gtk/builder.c b/testsuite/gtk/builder.c
index 9aad57aa21..61228ee2f4 100644
--- a/testsuite/gtk/builder.c
+++ b/testsuite/gtk/builder.c
@@ -91,7 +91,7 @@ test_parser (void)
g_error_free (error);
error = NULL;
- gtk_builder_add_from_string (builder, "<interface><object class=\"GtkVBox\" id=\"a\"><object class=\"GtkHBox\" id=\"b\"/></object></interface>", -1, &error);
+ gtk_builder_add_from_string (builder, "<interface><object class=\"GtkVBox\" id=\"a\"><object class=\"GtkBox\" id=\"b\"/></object></interface>", -1, &error);
g_assert_error (error, GTK_BUILDER_ERROR, GTK_BUILDER_ERROR_INVALID_TAG);
g_error_free (error);
@@ -724,7 +724,6 @@ test_types (void)
" <object class=\"GtkEntry\" id=\"entry\"/>"
" <object class=\"GtkFontButton\" id=\"fontbutton\"/>"
" <object class=\"GtkHButtonBox\" id=\"hbuttonbox\"/>"
- " <object class=\"GtkHBox\" id=\"hbox\"/>"
" <object class=\"GtkHPaned\" id=\"hpaned\"/>"
" <object class=\"GtkHScale\" id=\"hscale\"/>"
" <object class=\"GtkHScrollbar\" id=\"hscrollbar\"/>"
@@ -2428,7 +2427,8 @@ test_message_area (void)
"<interface>"
" <object class=\"GtkInfoBar\" id=\"infobar1\">"
" <child internal-child=\"content_area\">"
- " <object class=\"GtkHBox\" id=\"contentarea1\">"
+ " <object class=\"GtkBox\" id=\"contentarea1\">"
+ " <property name=\"orientation\">horizontal</property>"
" <child>"
" <object class=\"GtkLabel\" id=\"content\">"
" <property name=\"label\" translatable=\"yes\">Message</property>"
@@ -2670,7 +2670,8 @@ test_no_ids (void)
"<interface>"
" <object class=\"GtkInfoBar\">"
" <child internal-child=\"content_area\">"
- " <object class=\"GtkHBox\">"
+ " <object class=\"GtkBox\">"
+ " <property name=\"orientation\">horizontal</property>"
" <child>"
" <object class=\"GtkLabel\">"
" <property name=\"label\" translatable=\"yes\">Message</property>"