summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Larsson <alexl@redhat.com>2001-06-06 00:05:52 +0000
committerAlexander Larsson <alexl@src.gnome.org>2001-06-06 00:05:52 +0000
commit7e2541bd594c71ab3151bf986a4cf4bd88bef39b (patch)
tree52c0a713c655667a0d2d6078707ddcee8c18764d
parentec6baad4d82eaf2523db318a2ce728a5d75d8ec6 (diff)
downloadgtk+-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--ChangeLog3
-rw-r--r--ChangeLog.pre-2-03
-rw-r--r--ChangeLog.pre-2-103
-rw-r--r--ChangeLog.pre-2-23
-rw-r--r--ChangeLog.pre-2-43
-rw-r--r--ChangeLog.pre-2-63
-rw-r--r--ChangeLog.pre-2-83
-rw-r--r--demos/gtk-demo/appwindow.c2
8 files changed, 22 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index dcc9e957ca..747037968e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);