diff options
author | Alex Larsson <alexl@redhat.com> | 2001-06-06 00:05:52 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2001-06-06 00:05:52 +0000 |
commit | 7e2541bd594c71ab3151bf986a4cf4bd88bef39b (patch) | |
tree | 52c0a713c655667a0d2d6078707ddcee8c18764d | |
parent | ec6baad4d82eaf2523db318a2ce728a5d75d8ec6 (diff) | |
download | gtk+-7e2541bd594c71ab3151bf986a4cf4bd88bef39b.tar.gz |
Don't swap the order of the args to gtk_widget_destroyed.
2001-06-05 Alex Larsson <alexl@redhat.com>
* demos/gtk-demo/appwindow.c (do_appwindow):
Don't swap the order of the args to gtk_widget_destroyed.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | ChangeLog.pre-2-0 | 3 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 3 | ||||
-rw-r--r-- | ChangeLog.pre-2-2 | 3 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 3 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 3 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 3 | ||||
-rw-r--r-- | demos/gtk-demo/appwindow.c | 2 |
8 files changed, 22 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2001-06-05 Alex Larsson <alexl@redhat.com> + * demos/gtk-demo/appwindow.c (do_appwindow): + Don't swap the order of the args to gtk_widget_destroyed. + * tests/testgtk.c (destroy_properties): Don't crash when the properties window is destroyed. diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index dcc9e957ca..747037968e 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,5 +1,8 @@ 2001-06-05 Alex Larsson <alexl@redhat.com> + * demos/gtk-demo/appwindow.c (do_appwindow): + Don't swap the order of the args to gtk_widget_destroyed. + * tests/testgtk.c (destroy_properties): Don't crash when the properties window is destroyed. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index dcc9e957ca..747037968e 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,8 @@ 2001-06-05 Alex Larsson <alexl@redhat.com> + * demos/gtk-demo/appwindow.c (do_appwindow): + Don't swap the order of the args to gtk_widget_destroyed. + * tests/testgtk.c (destroy_properties): Don't crash when the properties window is destroyed. diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index dcc9e957ca..747037968e 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,5 +1,8 @@ 2001-06-05 Alex Larsson <alexl@redhat.com> + * demos/gtk-demo/appwindow.c (do_appwindow): + Don't swap the order of the args to gtk_widget_destroyed. + * tests/testgtk.c (destroy_properties): Don't crash when the properties window is destroyed. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index dcc9e957ca..747037968e 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,5 +1,8 @@ 2001-06-05 Alex Larsson <alexl@redhat.com> + * demos/gtk-demo/appwindow.c (do_appwindow): + Don't swap the order of the args to gtk_widget_destroyed. + * tests/testgtk.c (destroy_properties): Don't crash when the properties window is destroyed. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index dcc9e957ca..747037968e 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,5 +1,8 @@ 2001-06-05 Alex Larsson <alexl@redhat.com> + * demos/gtk-demo/appwindow.c (do_appwindow): + Don't swap the order of the args to gtk_widget_destroyed. + * tests/testgtk.c (destroy_properties): Don't crash when the properties window is destroyed. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index dcc9e957ca..747037968e 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,5 +1,8 @@ 2001-06-05 Alex Larsson <alexl@redhat.com> + * demos/gtk-demo/appwindow.c (do_appwindow): + Don't swap the order of the args to gtk_widget_destroyed. + * tests/testgtk.c (destroy_properties): Don't crash when the properties window is destroyed. diff --git a/demos/gtk-demo/appwindow.c b/demos/gtk-demo/appwindow.c index 75c898ab86..06993a926e 100644 --- a/demos/gtk-demo/appwindow.c +++ b/demos/gtk-demo/appwindow.c @@ -203,7 +203,7 @@ do_appwindow (void) /* NULL window variable when window is closed */ g_signal_connectc (G_OBJECT (window), "destroy", G_CALLBACK (gtk_widget_destroyed), - &window, TRUE); + &window, FALSE); table = gtk_table_new (1, 4, FALSE); |