diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-03-28 22:46:22 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-06-03 11:00:43 +0800 |
commit | 08567541fa6cfeb64f3f1af0357126ebc8f38cfb (patch) | |
tree | fc22fb66f04cae0c0fdfc35978890562d1d7f74f /plugins | |
parent | d502cc9f842d4530d11645c1c3bf5f47db7eb9db (diff) | |
download | gsoc2013-evolution-08567541fa6cfeb64f3f1af0357126ebc8f38cfb.tar.gz gsoc2013-evolution-08567541fa6cfeb64f3f1af0357126ebc8f38cfb.tar.zst gsoc2013-evolution-08567541fa6cfeb64f3f1af0357126ebc8f38cfb.zip |
Adapt save-calendar plugin to new ESource API.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/save-calendar/csv-format.c | 4 | ||||
-rw-r--r-- | plugins/save-calendar/ical-format.c | 4 | ||||
-rw-r--r-- | plugins/save-calendar/rdf-format.c | 4 |
3 files changed, 0 insertions, 12 deletions
diff --git a/plugins/save-calendar/csv-format.c b/plugins/save-calendar/csv-format.c index 021123d7fd..9d5dad8d98 100644 --- a/plugins/save-calendar/csv-format.c +++ b/plugins/save-calendar/csv-format.c @@ -340,10 +340,6 @@ do_save_calendar_csv (FormatHandler *handler, /* open source client */ primary_source = e_source_selector_ref_primary_selection (selector); source_client = e_cal_client_new (primary_source, type, &error); - if (source_client) - g_signal_connect ( - source_client, "authenticate", - G_CALLBACK (e_client_utils_authenticate_handler), NULL); g_object_unref (primary_source); if (!source_client || !e_client_open_sync (E_CLIENT (source_client), TRUE, NULL, &error)) { diff --git a/plugins/save-calendar/ical-format.c b/plugins/save-calendar/ical-format.c index 47cc15f9d7..01f7ff8ada 100644 --- a/plugins/save-calendar/ical-format.c +++ b/plugins/save-calendar/ical-format.c @@ -103,10 +103,6 @@ do_save_calendar_ical (FormatHandler *handler, /* open source client */ primary_source = e_source_selector_ref_primary_selection (selector); source_client = e_cal_client_new (primary_source, type, &error); - if (source_client) - g_signal_connect ( - source_client, "authenticate", - G_CALLBACK (e_client_utils_authenticate_handler), NULL); g_object_unref (primary_source); if (!source_client || !e_client_open_sync (E_CLIENT (source_client), TRUE, NULL, &error)) { diff --git a/plugins/save-calendar/rdf-format.c b/plugins/save-calendar/rdf-format.c index 2e2e92e19a..a68e570c87 100644 --- a/plugins/save-calendar/rdf-format.c +++ b/plugins/save-calendar/rdf-format.c @@ -205,10 +205,6 @@ do_save_calendar_rdf (FormatHandler *handler, /* open source client */ primary_source = e_source_selector_ref_primary_selection (selector); source_client = e_cal_client_new (primary_source, type, &error); - if (source_client) - g_signal_connect ( - source_client, "authenticate", - G_CALLBACK (e_client_utils_authenticate_handler), NULL); g_object_unref (primary_source); if (!source_client || !e_client_open_sync (E_CLIENT (source_client), TRUE, NULL, &error)) { |