From bdbd430bce5d26e48bb5f29aed526fe6b1031dfd Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Sat, 8 Sep 2001 21:06:49 +0000 Subject: (make_contact_editor_cb): show the right contact editor (the list editor 2001-09-08 Chris Toshok (make_contact_editor_cb): show the right contact editor (the list editor for list cards). svn path=/trunk/; revision=12707 --- addressbook/ChangeLog | 5 +++++ .../gui/component/select-names/e-select-names-popup.c | 13 ++++++++++--- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index c1b470ac0c..0ea44d6521 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2001-09-08 Chris Toshok + + (make_contact_editor_cb): show the right contact editor (the list + editor for list cards). + 2001-09-08 Chris Toshok * gui/component/select-names/e-select-names-popup.c diff --git a/addressbook/gui/component/select-names/e-select-names-popup.c b/addressbook/gui/component/select-names/e-select-names-popup.c index ef73d79e8a..69754f1976 100644 --- a/addressbook/gui/component/select-names/e-select-names-popup.c +++ b/addressbook/gui/component/select-names/e-select-names-popup.c @@ -99,12 +99,19 @@ make_contact_editor_cb (EBook *book, gpointer user_data) { if (book) { EDestination *dest = E_DESTINATION (user_data); - EContactEditor *ce; ECard *card; card = (ECard *) e_destination_get_card (dest); - ce = e_addressbook_show_contact_editor (book, card, FALSE, TRUE); - e_contact_editor_raise (ce); + if (e_card_evolution_list (card)) { + EContactListEditor *ce; + ce = e_addressbook_show_contact_list_editor (book, card, FALSE, TRUE); + e_contact_list_editor_raise (ce); + } + else { + EContactEditor *ce; + ce = e_addressbook_show_contact_editor (book, card, FALSE, TRUE); + e_contact_editor_raise (ce); + } gtk_object_unref (GTK_OBJECT (dest)); } } -- cgit