diff options
author | Jesse Pavel <jpavel@src.gnome.org> | 2000-10-26 04:43:22 +0800 |
---|---|---|
committer | Jesse Pavel <jpavel@src.gnome.org> | 2000-10-26 04:43:22 +0800 |
commit | 4f1fa371e16910a153a72a497b6e9e93f2f7c416 (patch) | |
tree | 5909b89aa3ff8fc786cc126b10c4fe87fab6e61b /calendar/gui/e-meeting-edit.c | |
parent | 39ffc10ba629b79b8b02f71d7c06a612225fb91b (diff) | |
download | gsoc2013-evolution-4f1fa371e16910a153a72a497b6e9e93f2f7c416.tar.gz gsoc2013-evolution-4f1fa371e16910a153a72a497b6e9e93f2f7c416.tar.zst gsoc2013-evolution-4f1fa371e16910a153a72a497b6e9e93f2f7c416.zip |
Removed generated files.
svn path=/trunk/; revision=6175
Diffstat (limited to 'calendar/gui/e-meeting-edit.c')
-rw-r--r-- | calendar/gui/e-meeting-edit.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/calendar/gui/e-meeting-edit.c b/calendar/gui/e-meeting-edit.c index 2353d615e8..fa7f609dfe 100644 --- a/calendar/gui/e-meeting-edit.c +++ b/calendar/gui/e-meeting-edit.c @@ -571,11 +571,13 @@ send_button_clicked_cb (GtkWidget *widget, gpointer data) return; } - sprintf (tempstr, "text/calendar; METHOD=%s", itip_methods[METHOD_REQUEST]); + sprintf (tempstr, "text/calendar;METHOD=%s", itip_methods[METHOD_REQUEST]); content_type = CORBA_string_alloc (strlen (tempstr)); strcpy (content_type, tempstr); filename = CORBA_string_alloc (0); - description = CORBA_string_alloc (0); + sprintf (tempstr, "Calendar attachment"); + description = CORBA_string_alloc (strlen (tempstr)); + strcpy (description, tempstr); show_inline = FALSE; /* I need to create an encapsulating iCalendar component, and stuff our vEvent |