diff options
Diffstat (limited to 'addressbook/gui/component/e-address-popup.c')
-rw-r--r-- | addressbook/gui/component/e-address-popup.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/addressbook/gui/component/e-address-popup.c b/addressbook/gui/component/e-address-popup.c index 134ce1241b..81add0e243 100644 --- a/addressbook/gui/component/e-address-popup.c +++ b/addressbook/gui/component/e-address-popup.c @@ -214,21 +214,14 @@ e_address_popup_new (void) } static void -found_fields_cb (EBook *book, EBookStatus status, EList *writable_fields, gpointer closure) +edit_contact_info_cb (EAddressPopup *pop) { - EAddressPopup *pop = E_ADDRESS_POPUP (closure); - EContactEditor *ce = e_contact_editor_new (pop->card, FALSE, writable_fields, FALSE); + EContactEditor *ce = e_addressbook_show_contact_editor (common_book, pop->card, FALSE, TRUE); e_contact_editor_raise (ce); gtk_widget_destroy (GTK_WIDGET (pop)); } static void -edit_contact_info_cb (EAddressPopup *pop) -{ - e_book_get_supported_fields (common_book, found_fields_cb, pop); -} - -static void e_address_popup_cardify (EAddressPopup *pop, ECard *card) { GtkWidget *b; |