diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2005-03-22 22:46:36 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-03-22 22:46:36 +0800 |
commit | 9ab035ce81904f24cf11098329fe2d00b4096e63 (patch) | |
tree | 8fc270cdd37bc34f7164ed77eb3ddf830b6bc95f /plugins/save-calendar/ical-format.c | |
parent | a874cf51d190d268a14d0be37428d9ed463da00f (diff) | |
download | gsoc2013-evolution-9ab035ce81904f24cf11098329fe2d00b4096e63.tar.gz gsoc2013-evolution-9ab035ce81904f24cf11098329fe2d00b4096e63.tar.zst gsoc2013-evolution-9ab035ce81904f24cf11098329fe2d00b4096e63.zip |
Fixes #73541
2005-03-22222222222222222222222222222222222222222222 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #73541
* csv-format.c: (do_save_calendar_csv):
* ical-format.c: (do_save_calendar_ical):
* rdf-format.c: (do_save_calendar_rdf): Changed the
cal e_cal_new to auth_new_from_source, so that the
ecal has the auth function in it.
svn path=/trunk/; revision=29089
Diffstat (limited to 'plugins/save-calendar/ical-format.c')
-rw-r--r-- | plugins/save-calendar/ical-format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/save-calendar/ical-format.c b/plugins/save-calendar/ical-format.c index b6fe797f1d..751fbaa426 100644 --- a/plugins/save-calendar/ical-format.c +++ b/plugins/save-calendar/ical-format.c @@ -70,7 +70,7 @@ do_save_calendar_ical (FormatHandler *handler, EPlugin *ep, ECalPopupTargetSourc return; /* open source client */ - source_client = e_cal_new (primary_source, type); + source_client = auth_new_cal_from_source (primary_source, type); if (!e_cal_open (source_client, TRUE, &error)) { display_error_message (gtk_widget_get_toplevel (GTK_WIDGET (target->selector)), error->message); g_object_unref (source_client); |