diff options
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/importers/icalendar-importer.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 8be481ef84..e6c664792d 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2003-04-02 Rodrigo Moya <rodrigo@ximian.com> + + * importers/icalendar-importer.c (load_file_fn, vcal_load_file_fn): + added "folder_type" parameter to EvolutionImporterLoadFileFn. + 2003-04-02 JP Rosevear <jpr@ximian.com> Fixes #39955 diff --git a/calendar/importers/icalendar-importer.c b/calendar/importers/icalendar-importer.c index 467545a0ca..a6d99379dc 100644 --- a/calendar/importers/icalendar-importer.c +++ b/calendar/importers/icalendar-importer.c @@ -276,6 +276,7 @@ static gboolean load_file_fn (EvolutionImporter *importer, const char *filename, const char *physical_uri, + const char *folder_type, void *closure) { char *contents; @@ -414,6 +415,7 @@ static gboolean vcal_load_file_fn (EvolutionImporter *importer, const char *filename, const char *physical_uri, + const char *folder_type, void *closure) { gboolean ret = FALSE; |