summaryrefslogtreecommitdiff
path: root/tests/add-child.c
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.van.berkom@gmail.com>2013-04-05 19:55:21 +0900
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2013-04-05 21:30:27 +0900
commit563e3a346cf4c97e0ced54babac64ee1059fe0b9 (patch)
tree2344651487991445426899306ef594ecc893448f /tests/add-child.c
parent7c5fdd2eb764154d22764d69f492d477157f42e8 (diff)
Test Cases: Now GtkComboBox finalizes properly.
The bug had to do with a call to glade_widget_rebuild()
Diffstat (limited to 'tests/add-child.c')
-rw-r--r--tests/add-child.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/add-child.c b/tests/add-child.c
index 32f8ab45..b7b02c21 100644
--- a/tests/add-child.c
+++ b/tests/add-child.c
@@ -184,9 +184,8 @@ add_child_widgets (GType parent_type)
add_test (parent_type, GTK_TYPE_LINK_BUTTON, assert_widget_parented);
add_test (parent_type, GTK_TYPE_MENU_BUTTON, assert_widget_parented);
- /* FIXME: Combo box types dont finalize properly for some reason */
- /* add_test (parent_type, GTK_TYPE_COMBO_BOX, assert_widget_parented); */
- /* add_test (parent_type, GTK_TYPE_COMBO_BOX_TEXT, assert_widget_parented); */
+ add_test (parent_type, GTK_TYPE_COMBO_BOX, assert_widget_parented);
+ add_test (parent_type, GTK_TYPE_COMBO_BOX_TEXT, assert_widget_parented);
add_test (parent_type, GTK_TYPE_SCALE_BUTTON, assert_widget_parented);
add_test (parent_type, GTK_TYPE_VOLUME_BUTTON, assert_widget_parented);
add_test (parent_type, GTK_TYPE_FONT_BUTTON, assert_widget_parented);
@@ -296,8 +295,7 @@ main (int argc,
add_test (GTK_TYPE_TREE_VIEW, GTK_TYPE_TREE_VIEW_COLUMN, assert_column_parented);
add_child_cells (GTK_TYPE_TREE_VIEW_COLUMN);
add_child_cells (GTK_TYPE_ICON_VIEW);
- /* FIXME: Combo box types dont finalize properly for some reason */
- /* add_child_cells (GTK_TYPE_COMBO_BOX); */
+ add_child_cells (GTK_TYPE_COMBO_BOX);
/* TextTag */
add_test (GTK_TYPE_TEXT_TAG_TABLE, GTK_TYPE_TEXT_TAG, NULL);