aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/importers/icalendar-importer.c4
2 files changed, 9 insertions, 2 deletions
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 <rodrigo@novell.com>
+
+ 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 <pchenthill@novell.com>
* 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) {