summaryrefslogtreecommitdiff
path: root/tests/testcombo.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2013-07-17 22:53:39 -0400
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2013-07-18 12:16:02 -0400
commit810313763ef7d66f16abffdeee02b29548889d49 (patch)
treed197e68dbfb7eca8c435ae5e7a10560031f546fd /tests/testcombo.c
parent6f7b0cac94c2c12d192f3945ef5befeb2949ea51 (diff)
downloadgtk+-810313763ef7d66f16abffdeee02b29548889d49.tar.gz
tests: don't use tearoff menus in combobox
Diffstat (limited to 'tests/testcombo.c')
-rw-r--r--tests/testcombo.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/testcombo.c b/tests/testcombo.c
index 0cbd5668ea..24253880b4 100644
--- a/tests/testcombo.c
+++ b/tests/testcombo.c
@@ -1116,7 +1116,6 @@ main (int argc, char **argv)
model = create_list_blaat ();
combobox = gtk_combo_box_new_with_model (model);
- gtk_combo_box_set_add_tearoffs (GTK_COMBO_BOX (combobox), TRUE);
g_object_unref (model);
gtk_container_add (GTK_CONTAINER (boom), combobox);
@@ -1161,7 +1160,6 @@ main (int argc, char **argv)
g_signal_connect (combobox, "notify::popup-shown",
G_CALLBACK (populate_list_blaat), combobox);
- gtk_combo_box_set_add_tearoffs (GTK_COMBO_BOX (combobox), TRUE);
g_object_unref (model);
gtk_container_add (GTK_CONTAINER (boom), combobox);
@@ -1204,7 +1202,6 @@ main (int argc, char **argv)
model = create_list_blaat ();
combobox = gtk_combo_box_new_with_model (model);
- gtk_combo_box_set_add_tearoffs (GTK_COMBO_BOX (combobox), TRUE);
g_object_unref (model);
gtk_container_add (GTK_CONTAINER (boom), combobox);
@@ -1265,7 +1262,6 @@ main (int argc, char **argv)
model = create_tree_blaat ();
combobox = gtk_combo_box_new_with_model (model);
- gtk_combo_box_set_add_tearoffs (GTK_COMBO_BOX (combobox), TRUE);
g_object_unref (model);
gtk_container_add (GTK_CONTAINER (boom), combobox);
@@ -1335,7 +1331,6 @@ main (int argc, char **argv)
model = create_phylogenetic_tree ();
combobox = gtk_combo_box_new_with_model (model);
- gtk_combo_box_set_add_tearoffs (GTK_COMBO_BOX (combobox), TRUE);
g_object_unref (model);
gtk_container_add (GTK_CONTAINER (boom), combobox);
@@ -1359,7 +1354,6 @@ main (int argc, char **argv)
model = create_capital_tree ();
combobox = gtk_combo_box_new_with_model (model);
- gtk_combo_box_set_add_tearoffs (GTK_COMBO_BOX (combobox), TRUE);
g_object_unref (model);
gtk_container_add (GTK_CONTAINER (boom), combobox);
renderer = gtk_cell_renderer_text_new ();