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.
This commit is contained in:
Alex Larsson 2001-06-06 00:05:52 +00:00 committed by Alexander Larsson
parent ec6baad4d8
commit 7e2541bd59
8 changed files with 22 additions and 1 deletions

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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.

View File

@ -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);