diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2008-02-18 14:03:43 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2008-02-18 14:03:43 +0800 |
commit | 1157f25a6959581bb1ffee62d700f52cb49c7d4b (patch) | |
tree | 5aa89f41fd18d6831245e0ed60fafa34ba2ba982 /plugins/save-calendar | |
parent | 6817eb05c35b09b808a55d01c435babb6c9aac2c (diff) | |
download | gsoc2013-evolution-1157f25a6959581bb1ffee62d700f52cb49c7d4b.tar.gz gsoc2013-evolution-1157f25a6959581bb1ffee62d700f52cb49c7d4b.tar.zst gsoc2013-evolution-1157f25a6959581bb1ffee62d700f52cb49c7d4b.zip |
Patch from OpenSUSE
2008-02-18 Srinivasa Ragavan <sragavan@novell.com>
* ical-format.c: (do_save_calendar_ical): Patch from OpenSUSE
svn path=/trunk/; revision=35043
Diffstat (limited to 'plugins/save-calendar')
-rw-r--r-- | plugins/save-calendar/ChangeLog | 4 | ||||
-rw-r--r-- | plugins/save-calendar/ical-format.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/plugins/save-calendar/ChangeLog b/plugins/save-calendar/ChangeLog index a498f0d995..0b6ecdaf34 100644 --- a/plugins/save-calendar/ChangeLog +++ b/plugins/save-calendar/ChangeLog @@ -1,3 +1,7 @@ +2008-02-18 Srinivasa Ragavan <sragavan@novell.com> + + * ical-format.c: (do_save_calendar_ical): Patch from OpenSUSE + 2008-01-25 Milan Crha <mcrha@redhat.com> ** Fix for bug #475781 diff --git a/plugins/save-calendar/ical-format.c b/plugins/save-calendar/ical-format.c index 7c35dbc589..a5a533206d 100644 --- a/plugins/save-calendar/ical-format.c +++ b/plugins/save-calendar/ical-format.c @@ -105,7 +105,7 @@ do_save_calendar_ical (FormatHandler *handler, EPlugin *ep, ECalPopupTargetSourc return; /* open source client */ - source_client = auth_new_cal_from_source (primary_source, type); + source_client = (ECal*) 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); |