diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2005-07-11 16:59:38 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2005-07-11 16:59:38 +0800 |
commit | 8cbd5c53b569f5e1ec903854bcb683ad50e23f3b (patch) | |
tree | c1051c5060bf3259f48bb16b791fb42d91e09b6b /calendar/gui/itip-utils.h | |
parent | 6454ebb3b77f1e7b86ac3267bb56da3ee0309537 (diff) | |
download | gsoc2013-evolution-8cbd5c53b569f5e1ec903854bcb683ad50e23f3b.tar.gz gsoc2013-evolution-8cbd5c53b569f5e1ec903854bcb683ad50e23f3b.tar.zst gsoc2013-evolution-8cbd5c53b569f5e1ec903854bcb683ad50e23f3b.zip |
Added a structure. Removed cal-attachment* Removed the attachment bar
2005-07-11 Srinivasa Ragavan <sragavan@novell.com>
* gui/itip-utils.[ch]: Added a structure.
* gui/dialogs/Makefile.am: Removed cal-attachment*
* gui/dialogs/comp-editor.[ch]: (attach_message) (drop_action)
(send_timezone) (save_comp) (response_cb) (delete_event_cb)
(attachment_bar_changed_cb) (attachment_bar_icon_clicked_cb)
(setup_widgets) (set_icon_from_comp) (fill_widgets) (real_edit_comp)
Removed the attachment bar specific to calendar and made a merged
one at widgets/misc/e-attachment*
svn path=/trunk/; revision=29709
Diffstat (limited to 'calendar/gui/itip-utils.h')
-rw-r--r-- | calendar/gui/itip-utils.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/calendar/gui/itip-utils.h b/calendar/gui/itip-utils.h index 39e4f6d099..d3031cdd1d 100644 --- a/calendar/gui/itip-utils.h +++ b/calendar/gui/itip-utils.h @@ -20,6 +20,14 @@ typedef enum { E_CAL_COMPONENT_METHOD_DECLINECOUNTER } ECalComponentItipMethod; +struct CalMimeAttach { + char *filename; + char *content_type; + char *description; + char *encoded_data; + guint length; +}; + EAccountList *itip_addresses_get (void); EAccount *itip_addresses_get_default (void); |