Destroy the dialog with the parent. (#156557, Paolo Borelli)

2004-10-28  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkaboutdialog.c (gtk_show_about_dialog): Destroy
	the dialog with the parent.  (#156557, Paolo Borelli)
This commit is contained in:
Matthias Clasen 2004-10-28 14:36:18 +00:00 committed by Matthias Clasen
parent 4229a1ee35
commit 2d6328d699
5 changed files with 21 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-10-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaboutdialog.c (gtk_show_about_dialog): Destroy
the dialog with the parent. (#156557, Paolo Borelli)
2004-10-27 Matthias Clasen <mclasen@redhat.com>
* Bump version

View File

@ -1,3 +1,8 @@
2004-10-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaboutdialog.c (gtk_show_about_dialog): Destroy
the dialog with the parent. (#156557, Paolo Borelli)
2004-10-27 Matthias Clasen <mclasen@redhat.com>
* Bump version

View File

@ -1,3 +1,8 @@
2004-10-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaboutdialog.c (gtk_show_about_dialog): Destroy
the dialog with the parent. (#156557, Paolo Borelli)
2004-10-27 Matthias Clasen <mclasen@redhat.com>
* Bump version

View File

@ -1,3 +1,8 @@
2004-10-28 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaboutdialog.c (gtk_show_about_dialog): Destroy
the dialog with the parent. (#156557, Paolo Borelli)
2004-10-27 Matthias Clasen <mclasen@redhat.com>
* Bump version

View File

@ -2014,6 +2014,7 @@ gtk_show_about_dialog (GtkWindow *parent,
if (parent)
{
gtk_window_set_transient_for (GTK_WINDOW (dialog), parent);
gtk_window_set_destroy_with_parent (GTK_WINDOW (dialog), TRUE);
g_object_set_data_full (G_OBJECT (parent), "gtk-about-dialog",
dialog, g_object_unref);
}