diff options
author | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-11-24 20:00:10 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2011-01-04 23:37:08 +0900 |
commit | 4a5be7c74e1df189d7f91c479a0da050d8272306 (patch) | |
tree | d7679143436b8ed2208e6773a074416290f30a88 /tests/testcombo.c | |
parent | 39cf1576d77076c96539ff019728257b72e404b4 (diff) | |
download | gtk+-4a5be7c74e1df189d7f91c479a0da050d8272306.tar.gz |
Getting closer to updating the treemenu view properly from the model signals
Diffstat (limited to 'tests/testcombo.c')
-rw-r--r-- | tests/testcombo.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/testcombo.c b/tests/testcombo.c index f321fb0a55..1de03fc79d 100644 --- a/tests/testcombo.c +++ b/tests/testcombo.c @@ -1092,6 +1092,7 @@ main (int argc, char **argv) g_object_set (renderer, "text", "la la la", NULL); gtk_container_add (GTK_CONTAINER (boom), cellview); +#if 0 /* GtkComboBox list */ tmp = gtk_frame_new ("GtkComboBox (list)"); gtk_box_pack_start (GTK_BOX (mainbox), tmp, FALSE, FALSE, 0); @@ -1333,7 +1334,7 @@ main (int argc, char **argv) NULL); gtk_combo_box_set_active (GTK_COMBO_BOX (combobox), 0); - +#endif /* Capitals */ tmp = gtk_frame_new ("Where are you ?"); @@ -1368,6 +1369,7 @@ main (int argc, char **argv) gdk_threads_add_timeout (1000, (GSourceFunc) capital_animation, model); #endif +#if 0 /* Ellipsizing growing combos */ tmp = gtk_frame_new ("Unconstrained Menu"); gtk_box_pack_start (GTK_BOX (mainbox), tmp, FALSE, FALSE, 0); @@ -1388,7 +1390,7 @@ main (int argc, char **argv) "text", 0, NULL); gtk_combo_box_set_active (GTK_COMBO_BOX (combobox), 0); gtk_combo_box_set_popup_fixed_width (GTK_COMBO_BOX (combobox), FALSE); - +#endif gtk_widget_show_all (window); gtk_main (); |