forked from AuroraMiddleware/gtk
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:
parent
90e3f1e20c
commit
ba6f66ab8e
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user