diff options
author | Tim Janik <timj@gimp.org> | 1998-03-13 17:45:16 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-03-13 17:45:16 +0000 |
commit | cc4dc8339db35bb48bed2a3059e6c8f474d551da (patch) | |
tree | 661bbd526dd5f7094a7232c2ffcd4eab5b5b8d31 /tests | |
parent | c57f1e318eeb549d2c1c6f5ced5a508780a6a973 (diff) | |
download | gtk+-cc4dc8339db35bb48bed2a3059e6c8f474d551da.tar.gz |
fix popup calculations (removal of FIXMEs), changes from Lars Hamann.
Fri Mar 13 18:25:07 1998 Tim Janik <timj@gimp.org>
* gtk/gtkcombo.c: fix popup calculations (removal
of FIXMEs), changes from Lars Hamann.
Fri Mar 13 10:25:16 1998 Tim Janik <timj@gimp.org>
* gtk/gtkwidget.h:
* gtk/gtkwidget.c: renamed gtk_widget_delete_hides to
gtk_widget_hide_on_delete at owens request, and because the
new name is much more descriptive.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testgtk.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/tests/testgtk.c b/tests/testgtk.c index 23cf76a2f9..735b0d74ac 100644 --- a/tests/testgtk.c +++ b/tests/testgtk.c @@ -2104,9 +2104,17 @@ create_entry () if (!window) { - cbitems = g_list_append(cbitems, "item1"); - cbitems = g_list_append(cbitems, "item2"); - cbitems = g_list_append(cbitems, "and item3"); + cbitems = g_list_append(cbitems, "item0"); + cbitems = g_list_append(cbitems, "item1 item1"); + cbitems = g_list_append(cbitems, "item2 item2 item2"); + cbitems = g_list_append(cbitems, "item3 item3 item3 item3"); + cbitems = g_list_append(cbitems, "item4 item4 item4 item4 item4"); + cbitems = g_list_append(cbitems, "item5 item5 item5 item5 item5 item5"); + cbitems = g_list_append(cbitems, "item6 item6 item6 item6 item6"); + cbitems = g_list_append(cbitems, "item7 item7 item7 item7"); + cbitems = g_list_append(cbitems, "item8 item8 item8"); + cbitems = g_list_append(cbitems, "item9 item9"); + window = gtk_window_new (GTK_WINDOW_TOPLEVEL); gtk_signal_connect (GTK_OBJECT (window), "destroy", |