aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/importers/icalendar-importer.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@novell.com>2005-04-08 23:47:39 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2005-04-08 23:47:39 +0800
commit22d32e8be54cd9940c5ff68375764916563e3130 (patch)
tree1f9dcfb53421aecdff4f2a9dc8046a9d8524b2f0 /calendar/importers/icalendar-importer.c
parent4e0c35255b6d1787f571a4f525f020fe6d7c7a3e (diff)
downloadgsoc2013-evolution-22d32e8be54cd9940c5ff68375764916563e3130.tar
gsoc2013-evolution-22d32e8be54cd9940c5ff68375764916563e3130.tar.gz
gsoc2013-evolution-22d32e8be54cd9940c5ff68375764916563e3130.tar.bz2
gsoc2013-evolution-22d32e8be54cd9940c5ff68375764916563e3130.tar.lz
gsoc2013-evolution-22d32e8be54cd9940c5ff68375764916563e3130.tar.xz
gsoc2013-evolution-22d32e8be54cd9940c5ff68375764916563e3130.tar.zst
gsoc2013-evolution-22d32e8be54cd9940c5ff68375764916563e3130.zip
Fixes #70035
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. svn path=/trunk/; revision=29194
Diffstat (limited to 'calendar/importers/icalendar-importer.c')
-rw-r--r--calendar/importers/icalendar-importer.c4
1 files changed, 2 insertions, 2 deletions
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) {