Destroy the correct data. (#158522, John Finlay)

2004-11-17  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkaboutdialog.c (gtk_about_dialog_set_email_hook)
	(gtk_about_dialog_set_url_hook): Destroy the correct
	data.  (#158522, John Finlay)
This commit is contained in:
Matthias Clasen 2004-11-17 22:38:38 +00:00 committed by Matthias Clasen
parent 90e3f1e20c
commit ba6f66ab8e
5 changed files with 26 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2004-11-17 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaboutdialog.c (gtk_about_dialog_set_email_hook)
(gtk_about_dialog_set_url_hook): Destroy the correct
data. (#158522, John Finlay)
2004-11-16 Matthias Clasen <mclasen@redhat.com>
* configure.in: Use gmodule-no-export-2.0.pc, require glib 2.5.7

View File

@ -1,3 +1,9 @@
2004-11-17 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaboutdialog.c (gtk_about_dialog_set_email_hook)
(gtk_about_dialog_set_url_hook): Destroy the correct
data. (#158522, John Finlay)
2004-11-16 Matthias Clasen <mclasen@redhat.com>
* configure.in: Use gmodule-no-export-2.0.pc, require glib 2.5.7

View File

@ -1,3 +1,9 @@
2004-11-17 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaboutdialog.c (gtk_about_dialog_set_email_hook)
(gtk_about_dialog_set_url_hook): Destroy the correct
data. (#158522, John Finlay)
2004-11-16 Matthias Clasen <mclasen@redhat.com>
* configure.in: Use gmodule-no-export-2.0.pc, require glib 2.5.7

View File

@ -1,3 +1,9 @@
2004-11-17 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkaboutdialog.c (gtk_about_dialog_set_email_hook)
(gtk_about_dialog_set_url_hook): Destroy the correct
data. (#158522, John Finlay)
2004-11-16 Matthias Clasen <mclasen@redhat.com>
* configure.in: Use gmodule-no-export-2.0.pc, require glib 2.5.7

View File

@ -2046,7 +2046,7 @@ gtk_about_dialog_set_email_hook (GtkAboutDialogActivateLinkFunc func,
GtkAboutDialogActivateLinkFunc old;
if (activate_email_hook_destroy != NULL)
(* activate_email_hook_destroy) (activate_url_hook_data);
(* activate_email_hook_destroy) (activate_email_hook_data);
old = activate_email_hook;
@ -2078,7 +2078,7 @@ gtk_about_dialog_set_url_hook (GtkAboutDialogActivateLinkFunc func,
GtkAboutDialogActivateLinkFunc old;
if (activate_url_hook_destroy != NULL)
(* activate_url_hook_destroy) (activate_email_hook_data);
(* activate_url_hook_destroy) (activate_url_hook_data);
old = activate_url_hook;