diff options
author | Rodrigo Moya <rodrigo@novell.com> | 2005-04-08 23:47:39 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2005-04-08 23:47:39 +0800 |
commit | 22d32e8be54cd9940c5ff68375764916563e3130 (patch) | |
tree | 1f9dcfb53421aecdff4f2a9dc8046a9d8524b2f0 /calendar/importers | |
parent | 4e0c35255b6d1787f571a4f525f020fe6d7c7a3e (diff) | |
download | gsoc2013-evolution-22d32e8be54cd9940c5ff68375764916563e3130.tar.gz 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')
-rw-r--r-- | calendar/importers/icalendar-importer.c | 4 |
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) { |