[evolution/account-mgmt: 52/55] Adapt save-calendar plugin to new ESource API.



commit e7fc39a117d2f1664207631422bf998167df2a57
Author: Matthew Barnes <mbarnes redhat com>
Date:   Mon Mar 28 10:46:22 2011 -0400

    Adapt save-calendar plugin to new ESource API.

 plugins/save-calendar/csv-format.c  |    4 ----
 plugins/save-calendar/ical-format.c |    4 ----
 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 021123d..9d5dad8 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 47cc15f..01f7ff8 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 2e2e92e..a68e570 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)) {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]