diff options
author | JP Rosevear <jpr@novell.com> | 2005-01-10 23:51:55 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2005-01-10 23:51:55 +0800 |
commit | fb874ce0c9bb385dc5d77039067209993d0039a4 (patch) | |
tree | 71afadb8dc33ab4d5c7d92ec54b57008af35110d /plugins/itip-formatter/itip-formatter.c | |
parent | d4af56c10ca1ef0a1990aa7956e52f2f75af63e6 (diff) | |
download | gsoc2013-evolution-fb874ce0c9bb385dc5d77039067209993d0039a4.tar.gz gsoc2013-evolution-fb874ce0c9bb385dc5d77039067209993d0039a4.tar.zst gsoc2013-evolution-fb874ce0c9bb385dc5d77039067209993d0039a4.zip |
first crack at saving attachments for the backend (extract_itip_data):
2005-01-10 JP Rosevear <jpr@novell.com>
* itip-formatter.c (update_item): first crack at saving
attachments for the backend
(extract_itip_data): tell the user what to do for more than one
attachment
svn path=/trunk/; revision=28328
Diffstat (limited to 'plugins/itip-formatter/itip-formatter.c')
-rw-r--r-- | plugins/itip-formatter/itip-formatter.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c index 5a642c03ec..ff07f6321f 100644 --- a/plugins/itip-formatter/itip-formatter.c +++ b/plugins/itip-formatter/itip-formatter.c @@ -1001,11 +1001,18 @@ extract_itip_data (FormatItipPObject *pitip, GtkContainer *container) pitip->total += icalcomponent_count_components (pitip->main_comp, ICAL_VTODO_COMPONENT); pitip->total += icalcomponent_count_components (pitip->main_comp, ICAL_VFREEBUSY_COMPONENT); - if (pitip->total > 0) + if (pitip->total > 1) { + set_itip_error (pitip, container, + _("The calendar attached contains multiple items"), + _("To process all of these items, the file should be saved and the calendar imported")); + + return FALSE; + } if (pitip->total > 0) { pitip->current = 1; - else + } else { pitip->current = 0; - + } + /* Determine any delegate sections */ prop = icalcomponent_get_first_property (pitip->ical_comp, ICAL_X_PROPERTY); while (prop) { |