diff options
author | Dave Camp <dave@ximian.com> | 2001-06-21 02:29:03 +0800 |
---|---|---|
committer | Dave Camp <campd@src.gnome.org> | 2001-06-21 02:29:03 +0800 |
commit | 90aba2dbfde59bd7b48d127a463e545a05301e76 (patch) | |
tree | a433fb2fef7cf0c21b11c03c64e586d5ccfc8637 /addressbook/backend/ebook | |
parent | 51ba0332fcb3b2d82c37d3dda73267e4d0769a30 (diff) | |
download | gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.tar gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.tar.gz gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.tar.bz2 gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.tar.lz gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.tar.xz gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.tar.zst gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.zip |
Changed attachData to accept a sequence of chars rather than a string.
2001-06-20 Dave Camp <dave@ximian.com>
* Evolution-Composer.idl: Changed attachData to accept a sequence of
chars rather than a string.
* evolution-composer.c (impl_Composer_attach_data): Changed the 'data'
argument to a GNOME_Evolution_Composer_AttachmentData, and pass
data->_buffer and data->_length to camel_mime_part_set_content().
2001-06-20 Dave Camp <dave@ximian.com>
* gui/itip-utils.c (itip_send_comp): Changed attach_data
to be a GNOME_Evolution_Composer_AttachmentData rather than a
CORBA_char*.
2001-06-20 Dave Camp <dave@ximian.com>
* backend/ebook/e-card.c (e_card_list_send): Changed attach_data
to be a GNOME_Evolution_Composer_AttachmentData rather than a
CORBA_char*.
svn path=/trunk/; revision=10343
Diffstat (limited to 'addressbook/backend/ebook')
-rw-r--r-- | addressbook/backend/ebook/e-card.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/addressbook/backend/ebook/e-card.c b/addressbook/backend/ebook/e-card.c index 50dc348059..211c22b33c 100644 --- a/addressbook/backend/ebook/e-card.c +++ b/addressbook/backend/ebook/e-card.c @@ -3744,10 +3744,11 @@ e_card_list_send (GList *cards, ECardDisposition disposition) } if (disposition == E_CARD_DISPOSITION_AS_ATTACHMENT) { - CORBA_char *content_type, *filename, *description, *attach_data; + CORBA_char *content_type, *filename, *description; + GNOME_Evolution_Composer_AttachmentData *attach_data; CORBA_boolean show_inline; char *tempstr; - + content_type = CORBA_string_dup ("text/x-vcard"); filename = CORBA_string_dup (""); @@ -3768,7 +3769,10 @@ e_card_list_send (GList *cards, ECardDisposition disposition) show_inline = FALSE; tempstr = e_card_list_get_vcard (cards); - attach_data = CORBA_string_dup (tempstr); + attach_data = GNOME_Evolution_Composer_AttachmentData__alloc(); + attach_data->_maximum = attach_data->_length = strlen (tempstr); + attach_data->_buffer = CORBA_sequence_CORBA_char_allocbuf (attach_data->_length); + strcpy (attach_data->_buffer, tempstr); g_free (tempstr); GNOME_Evolution_Composer_attachData (composer_server, |