From 5597bf794e72cd92935a7ac9828bcb590fcbb853 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 28 Feb 2003 18:02:35 +0000 Subject: Remove these from here; talking to the mailer doesn't really belong at the * backend/ebook/e-card.c (e_card_list_send, e_card_send): Remove these from here; talking to the mailer doesn't really belong at the libebook level anyway. * backend/ebook/Makefile.am: Remove Evolution-Composer CORBA stuff, which fixes some linking problems on OS X. * gui/widgets/e-addressbook-util.c (e_addressbook_send_card_list, e_addressbook_send_card): Move from e-card.c and rename. * gui/widgets/Makefile.am: move Evolution-Composer CORBA stuff here * gui/widgets/e-addressbook-view.c (send_as, send_to, e_addressbook_view_send, e_addressbook_view_send_to): Update for new function names. * gui/contact-list-editor/e-contact-list-editor.c (file_send_as_cb, file_send_to_cb): Likewise * gui/contact-editor/e-contact-editor.c (file_send_as_cb, file_send_to_cb): Likewise svn path=/trunk/; revision=20103 --- addressbook/gui/widgets/e-addressbook-view.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'addressbook/gui/widgets/e-addressbook-view.c') diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index 6b6ddffe3f..8a4714bc19 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -681,7 +681,7 @@ send_as (GtkWidget *widget, CardAndBook *card_and_book) { GList *cards = get_card_list (card_and_book); if (cards) { - e_card_list_send(cards, E_CARD_DISPOSITION_AS_ATTACHMENT); + e_addressbook_send_card_list(cards, E_ADDRESSBOOK_DISPOSITION_AS_ATTACHMENT); e_free_object_list(cards); } } @@ -693,7 +693,7 @@ send_to (GtkWidget *widget, CardAndBook *card_and_book) GList *cards = get_card_list (card_and_book); if (cards) { - e_card_list_send(cards, E_CARD_DISPOSITION_AS_TO); + e_addressbook_send_card_list(cards, E_ADDRESSBOOK_DISPOSITION_AS_TO); e_free_object_list(cards); } } @@ -1877,7 +1877,7 @@ e_addressbook_view_send (EAddressbookView *view) { GList *list = get_selected_cards (view); if (list) - e_card_list_send (list, E_CARD_DISPOSITION_AS_ATTACHMENT); + e_addressbook_send_card_list (list, E_ADDRESSBOOK_DISPOSITION_AS_ATTACHMENT); e_free_object_list(list); } @@ -1886,7 +1886,7 @@ e_addressbook_view_send_to (EAddressbookView *view) { GList *list = get_selected_cards (view); if (list) - e_card_list_send (list, E_CARD_DISPOSITION_AS_TO); + e_addressbook_send_card_list (list, E_ADDRESSBOOK_DISPOSITION_AS_TO); e_free_object_list(list); } -- cgit v1.2.3