summaryrefslogtreecommitdiff
path: root/tests/testgtk.c
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@gnu.org>2001-10-26 23:37:21 +0000
committerAnders Carlsson <andersca@src.gnome.org>2001-10-26 23:37:21 +0000
commit78fca9fd0555fbcd5c57f8897a461e0e122c043f (patch)
tree5347af0906d2378abdbd51c95b5aa0f7c791a4dc /tests/testgtk.c
parentdc0772a2b92d88de01f4de07e7bcf666e18c5029 (diff)
downloadgtk+-78fca9fd0555fbcd5c57f8897a461e0e122c043f.tar.gz
Set up destroy signals so that all windows will be destroyed when one is.
2001-10-27 Anders Carlsson <andersca@gnu.org> * tests/testgtk.c (create_window_states): Set up destroy signals so that all windows will be destroyed when one is. This fixes bug #58133.
Diffstat (limited to 'tests/testgtk.c')
-rw-r--r--tests/testgtk.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/tests/testgtk.c b/tests/testgtk.c
index 21925a88e6..b5f42ebe08 100644
--- a/tests/testgtk.c
+++ b/tests/testgtk.c
@@ -7964,12 +7964,12 @@ tracking_label (GtkWidget *window)
GtkWidget *button;
hbox = gtk_hbox_new (FALSE, 5);
-
+
gtk_signal_connect_object (GTK_OBJECT (hbox),
"destroy",
GTK_SIGNAL_FUNC (gtk_widget_destroy),
GTK_OBJECT (window));
-
+
label = gtk_label_new ("<no window state events received>");
gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
@@ -8091,12 +8091,19 @@ create_window_states (void)
gtk_container_add (GTK_CONTAINER (window), box1);
iconified = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+ gtk_signal_connect_object (GTK_OBJECT (iconified), "destroy",
+ GTK_SIGNAL_FUNC(gtk_widget_destroy),
+ GTK_OBJECT (window));
gtk_window_iconify (GTK_WINDOW (iconified));
gtk_window_set_title (GTK_WINDOW (iconified), "Iconified initially");
controls = get_state_controls (iconified);
gtk_container_add (GTK_CONTAINER (iconified), controls);
normal = gtk_window_new (GTK_WINDOW_TOPLEVEL);
+ gtk_signal_connect_object (GTK_OBJECT (normal), "destroy",
+ GTK_SIGNAL_FUNC(gtk_widget_destroy),
+ GTK_OBJECT (window));
+
gtk_window_set_title (GTK_WINDOW (normal), "Deiconified initially");
controls = get_state_controls (normal);
gtk_container_add (GTK_CONTAINER (normal), controls);