diff options
author | JP Rosevear <jpr@src.gnome.org> | 2001-10-31 07:45:17 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-10-31 07:45:17 +0800 |
commit | 88547f7628a0beb0fea18f72c02dbbbd259f6de7 (patch) | |
tree | 8cc25502c3a82f985d693b0128de68fea1ed675a | |
parent | 8e126f256f2533852c527649c850bb7d222408eb (diff) | |
download | gsoc2013-evolution-88547f7628a0beb0fea18f72c02dbbbd259f6de7.tar gsoc2013-evolution-88547f7628a0beb0fea18f72c02dbbbd259f6de7.tar.gz gsoc2013-evolution-88547f7628a0beb0fea18f72c02dbbbd259f6de7.tar.bz2 gsoc2013-evolution-88547f7628a0beb0fea18f72c02dbbbd259f6de7.tar.lz gsoc2013-evolution-88547f7628a0beb0fea18f72c02dbbbd259f6de7.tar.xz gsoc2013-evolution-88547f7628a0beb0fea18f72c02dbbbd259f6de7.tar.zst gsoc2013-evolution-88547f7628a0beb0fea18f72c02dbbbd259f6de7.zip |
Revert.
svn path=/trunk/; revision=14508
-rw-r--r-- | calendar/gui/itip-utils.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index 454f18a75c..013787ee39 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -323,12 +323,6 @@ comp_subject (CalComponent *comp) } static CORBA_char * -comp_body (CalComponent *comp) -{ - return CORBA_string_dup (""); -} - -static CORBA_char * comp_content_type (CalComponentItipMethod method) { char tmp[256]; @@ -679,7 +673,7 @@ itip_send_comp (CalComponentItipMethod method, CalComponent *send_comp) GNOME_Evolution_Composer_RecipientList *to_list = NULL; GNOME_Evolution_Composer_RecipientList *cc_list = NULL; GNOME_Evolution_Composer_RecipientList *bcc_list = NULL; - CORBA_char *body = NULL, *subject = NULL, *content_type = NULL; + CORBA_char *subject = NULL, *content_type = NULL; CORBA_char *filename = NULL, *description = NULL; GNOME_Evolution_Composer_AttachmentData *attach_data = NULL; CORBA_boolean show_inline; @@ -716,9 +710,6 @@ itip_send_comp (CalComponentItipMethod method, CalComponent *send_comp) goto cleanup; } - /* Body of the message */ - body = comp_body (comp); - /* Content type, suggested file name, description */ content_type = comp_content_type (method); filename = comp_filename (comp); @@ -767,8 +758,6 @@ itip_send_comp (CalComponentItipMethod method, CalComponent *send_comp) if (subject != NULL) CORBA_free (subject); - if (body != NULL) - CORBA_free (body); if (content_type != NULL) CORBA_free (content_type); if (filename != NULL) |