diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-21 09:22:39 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-21 09:22:39 +0800 |
commit | 82d23cd8e6c01615d52a05b555124b0135e45220 (patch) | |
tree | e83fd306bc16e3af2d3095971b9076d0a937eff2 /addressbook | |
parent | 7d4c791a79455fc25bba4a088066cf3825bca01d (diff) | |
download | gsoc2013-evolution-82d23cd8e6c01615d52a05b555124b0135e45220.tar.gz gsoc2013-evolution-82d23cd8e6c01615d52a05b555124b0135e45220.tar.zst gsoc2013-evolution-82d23cd8e6c01615d52a05b555124b0135e45220.zip |
roll forward the fix for the contact editor.
2002-11-20 Chris Toshok <toshok@ximian.com>
* gui/contact-editor/e-contact-editor.c: roll forward the fix for
the contact editor.
svn path=/trunk/; revision=18874
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; |