aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/importers/main.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2002-07-16 03:24:27 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2002-07-16 03:24:27 +0800
commit3b8e4896e2fdf1c837743387928f5b4fd1e2d02f (patch)
treea5e1702b5a63355cc651357c089b07613b21157a /calendar/importers/main.c
parentd503b1a1c0aad7668fc1c64555b72320611ef341 (diff)
downloadgsoc2013-evolution-3b8e4896e2fdf1c837743387928f5b4fd1e2d02f.tar
gsoc2013-evolution-3b8e4896e2fdf1c837743387928f5b4fd1e2d02f.tar.gz
gsoc2013-evolution-3b8e4896e2fdf1c837743387928f5b4fd1e2d02f.tar.bz2
gsoc2013-evolution-3b8e4896e2fdf1c837743387928f5b4fd1e2d02f.tar.lz
gsoc2013-evolution-3b8e4896e2fdf1c837743387928f5b4fd1e2d02f.tar.xz
gsoc2013-evolution-3b8e4896e2fdf1c837743387928f5b4fd1e2d02f.tar.zst
gsoc2013-evolution-3b8e4896e2fdf1c837743387928f5b4fd1e2d02f.zip
Fixes #8001
2002-07-14 Rodrigo Moya <rodrigo@ximian.com> Fixes #8001 * importers/icalendar-importer.c (connect_to_shell): new function for connecting the importers (both iCal and vCal) to the shell, needed for some information retrieval about the folders we're importing to. (ical_importer_new, vcal_importer_new): call connect_to_shell. (importer_destroy_cb): unref the shell client object. (get_uri_from_folder_path): retrieve the uri from the storage registry. (check_folder_type): removed. * importers/Makefile.am: included libeshell to LIBS. svn path=/trunk/; revision=17463
Diffstat (limited to 'calendar/importers/main.c')
-rw-r--r--calendar/importers/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/importers/main.c b/calendar/importers/main.c
index f6d5788d93..d5f0de1b50 100644
--- a/calendar/importers/main.c
+++ b/calendar/importers/main.c
@@ -47,7 +47,7 @@ importer_factory_fn (BonoboGenericFactory *factory, const char *id, void *closur
else if (!strcmp (id, GNOME_CALENDAR_IMPORTER_ID))
object = gnome_calendar_importer_new ();
else
- g_warning ("Component not supporte by this factory");
+ g_warning ("Component not supported by this factory");
return object;
}