diff options
-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; |