diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2005-07-20 19:18:54 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2005-07-20 19:18:54 +0800 |
commit | 981030f7093a385e9bf4cca723f92d0363550a65 (patch) | |
tree | 1e8f8d61e8f24b5a20a6e76c3c20e50eaf326d3c | |
parent | a4e4725d360cb603c6c122227c0f781992fe9b52 (diff) | |
download | gsoc2013-evolution-981030f7093a385e9bf4cca723f92d0363550a65.tar.gz 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
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 995e634c47..a2b5d96988 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +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 + 2005-07-20 Chenthill Palanisamy <pchenthill@novell.com> Fixes #309680 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; |