diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 12 |
2 files changed, 17 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 9999ef6d31..7c16d1c666 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,10 @@ 2001-02-05 Christopher James Lahey <clahey@helixcode.com> + * gui/component/addressbook-config.c (table_add_elem): Save the + help_text in the closure. + +2001-02-05 Christopher James Lahey <clahey@helixcode.com> + * gui/widgets/Makefile.am (libeminicard_a_SOURCES): Added gal-view-factory-minicard.c, gal-view-factory-minicard.h, gal-view-minicard.c, and gal-view-minicard.h. @@ -13,6 +18,8 @@ * gui/widgets/e-addressbook-view.c: Deploy gal-view stuff properly. +2001-02-05 Christopher James Lahey <clahey@helixcode.com> + * backend/ebook/e-card.c (e_card_get_vcard): Make the Note field be quoted printable. diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c index 3125c696ed..43f34a4389 100644 --- a/addressbook/gui/component/addressbook-config.c +++ b/addressbook/gui/component/addressbook-config.c @@ -263,6 +263,14 @@ typedef struct { char *help_text; } FocusHelpClosure; +static void +free_focus_help_closure (gpointer data) +{ + FocusHelpClosure *closure = data; + g_free(closure->help_text); + g_free(closure); +} + static gint focus_help (GtkWidget *widget, GdkEventFocus *event, FocusHelpClosure *closure) { @@ -293,13 +301,13 @@ table_add_elem (AddressbookSourceDialog *dialog, GtkWidget *table, focus_closure = g_new0 (FocusHelpClosure, 1); focus_closure->dialog = dialog; - focus_closure->help_text = help_text; + focus_closure->help_text = g_strdup(help_text); gtk_signal_connect_full (GTK_OBJECT (entry), "focus_in_event" /* XXX */, (GtkSignalFunc) focus_help, NULL, focus_closure, - (GtkDestroyNotify) g_free, + (GtkDestroyNotify) free_focus_help_closure, FALSE, FALSE); return entry; } |