diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index d98e78f4ec..2224aefc52 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2002-11-20 Chris Toshok <toshok@ximian.com> + + * gui/contact-editor/e-contact-editor.c: roll forward the fix for + the contact editor. + 2002-11-21 Not Zed <NotZed@Ximian.com> * gui/component/select-names/e-select-names-bonobo.c diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index 107031d9f4..d48066f72b 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -1530,6 +1530,11 @@ e_contact_editor_dispose (GObject *object) { e_contact_editor->book = NULL; } + if (e_contact_editor->select_names_contacts) { + g_object_unref(e_contact_editor->select_names_contacts); + e_contact_editor->select_names_contacts = NULL; + } + if (e_contact_editor->name) { e_card_name_unref(e_contact_editor->name); e_contact_editor->name = NULL; |