From 22d32e8be54cd9940c5ff68375764916563e3130 Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Fri, 8 Apr 2005 15:47:39 +0000 Subject: Fixes #70035 2005-04-08 Rodrigo Moya Fixes #70035 * importers/icalendar-importer.c (support_format_fn, load_file_fn): use e_cal_util_parse_ics_string instead of icalparser_parse_string. svn path=/trunk/; revision=29194 --- calendar/ChangeLog | 7 +++++++ calendar/importers/icalendar-importer.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'calendar') diff --git a/calendar/ChangeLog b/calendar/ChangeLog index dcbefdaed3..ead41ffeed 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2005-04-08 Rodrigo Moya + + Fixes #70035 + + * importers/icalendar-importer.c (support_format_fn, load_file_fn): + use e_cal_util_parse_ics_string instead of icalparser_parse_string. + 2005-04-05 Chenthill Palanisamy * gui/e-cal-model.c: (cal_opened_cb): If the status diff --git a/calendar/importers/icalendar-importer.c b/calendar/importers/icalendar-importer.c index 2e17d39f59..082aab1bce 100644 --- a/calendar/importers/icalendar-importer.c +++ b/calendar/importers/icalendar-importer.c @@ -362,7 +362,7 @@ support_format_fn (EvolutionImporter *importer, if (g_file_get_contents (filename, &contents, NULL, NULL)) { /* parse the file */ - icalcomp = icalparser_parse_string (contents); + icalcomp = e_cal_util_parse_ics_string (contents); g_free (contents); if (icalcomp) { @@ -392,7 +392,7 @@ load_file_fn (EvolutionImporter *importer, icalcomponent *icalcomp; /* parse the file */ - icalcomp = icalparser_parse_string (contents); + icalcomp = e_cal_util_parse_ics_string (contents); g_free (contents); if (icalcomp) { -- cgit v1.2.3