From 18372290242a13cee9cc64c50c054d07f9494be4 Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Wed, 4 Feb 2004 21:31:58 +0000 Subject: use new cal auth functions 2004-02-04 JP Rosevear * importers/icalendar-importer.c (gnome_calendar_import_data_fn): use new cal auth functions * common/authentication.c (auth_new_cal_from_default): get a default calendar with auth * common/authentication.h: add proto svn path=/trunk/; revision=24621 --- calendar/importers/icalendar-importer.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'calendar/importers') diff --git a/calendar/importers/icalendar-importer.c b/calendar/importers/icalendar-importer.c index 69e0e554c8..118c0aaa19 100644 --- a/calendar/importers/icalendar-importer.c +++ b/calendar/importers/icalendar-importer.c @@ -607,21 +607,15 @@ gnome_calendar_import_data_fn (EvolutionIntelligentImporter *ii, return; } - /* FIXME */ /* Try to open the default calendar & tasks folders. */ if (ici->do_calendar) { - if (!e_cal_open_default (&calendar_client, E_CAL_SOURCE_TYPE_EVENT, NULL)) - goto out; - - if (!e_cal_open (calendar_client, FALSE, NULL)) + calendar_client = auth_new_cal_from_default (E_CAL_SOURCE_TYPE_EVENT); goto out; } if (ici->do_tasks) { - if (!e_cal_open_default (&tasks_client, E_CAL_SOURCE_TYPE_TODO, NULL)) - goto out; - - if (!e_cal_open (tasks_client, FALSE, NULL)) + tasks_client = auth_new_cal_from_default (E_CAL_SOURCE_TYPE_TODO); + if (!tasks_client) goto out; } -- cgit