aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2005-07-20 19:18:54 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2005-07-20 19:18:54 +0800
commit981030f7093a385e9bf4cca723f92d0363550a65 (patch)
tree1e8f8d61e8f24b5a20a6e76c3c20e50eaf326d3c /calendar/gui/dialogs
parenta4e4725d360cb603c6c122227c0f781992fe9b52 (diff)
downloadgsoc2013-evolution-981030f7093a385e9bf4cca723f92d0363550a65.tar
gsoc2013-evolution-981030f7093a385e9bf4cca723f92d0363550a65.tar.gz
gsoc2013-evolution-981030f7093a385e9bf4cca723f92d0363550a65.tar.bz2
gsoc2013-evolution-981030f7093a385e9bf4cca723f92d0363550a65.tar.lz
gsoc2013-evolution-981030f7093a385e9bf4cca723f92d0363550a65.tar.xz
gsoc2013-evolution-981030f7093a385e9bf4cca723f92d0363550a65.tar.zst
gsoc2013-evolution-981030f7093a385e9bf4cca723f92d0363550a65.zip
made it use e_attachment_bar_get_parts instead of the old api
2005-07-20 Srinivasa Ragavan <sragavan@novell.com> * gui/dialogs/comp-editor.c: (get_attachment_list) (comp_editor_get_mime_attach_list) made it use e_attachment_bar_get_parts instead of the old api svn path=/trunk/; revision=29814
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r--calendar/gui/dialogs/comp-editor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index 1cbfb09257..159beb0240 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -604,7 +604,7 @@ get_attachment_list (CompEditor *editor)
e_cal_component_get_uid (editor->priv->comp, &comp_uid);
- parts = e_attachment_bar_get_attachment_part_list((EAttachmentBar *)editor->priv->attachment_bar);
+ parts = e_attachment_bar_get_parts((EAttachmentBar *)editor->priv->attachment_bar);
for (p = parts; p!=NULL ; p = p->next) {
CamelDataWrapper *wrapper;
@@ -2402,7 +2402,7 @@ comp_editor_get_mime_attach_list (CompEditor *editor)
GSList *attach_list = NULL, *l, *parts;
/* TODO assert sanity of bar */
- parts = e_attachment_bar_get_attachment_part_list (editor->priv->attachment_bar);
+ parts = e_attachment_bar_get_parts (editor->priv->attachment_bar);
for (l = parts; l ; l = l->next) {
CamelDataWrapper *wrapper;