aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-01-26 04:18:25 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-01-26 04:47:51 +0800
commit3fa4dfc54dd08d75076d4881207bdc45c3ee29ee (patch)
treeab03a20fd4febb44c34d7f09092af3edbce8f1cb /calendar
parent60c5c7170f5642a78a4fd2092e4e78caae8475d6 (diff)
downloadgsoc2013-evolution-3fa4dfc54dd08d75076d4881207bdc45c3ee29ee.tar
gsoc2013-evolution-3fa4dfc54dd08d75076d4881207bdc45c3ee29ee.tar.gz
gsoc2013-evolution-3fa4dfc54dd08d75076d4881207bdc45c3ee29ee.tar.bz2
gsoc2013-evolution-3fa4dfc54dd08d75076d4881207bdc45c3ee29ee.tar.lz
gsoc2013-evolution-3fa4dfc54dd08d75076d4881207bdc45c3ee29ee.tar.xz
gsoc2013-evolution-3fa4dfc54dd08d75076d4881207bdc45c3ee29ee.tar.zst
gsoc2013-evolution-3fa4dfc54dd08d75076d4881207bdc45c3ee29ee.zip
Remove usage of deprecated e_client_is_opened().
e_client_is_opened() always returns TRUE, so skip it.
Diffstat (limited to 'calendar')
-rw-r--r--calendar/gui/e-cal-model.c88
-rw-r--r--calendar/gui/gnome-cal.c4
-rw-r--r--calendar/gui/tag-calendar.c3
3 files changed, 2 insertions, 93 deletions
diff --git a/calendar/gui/e-cal-model.c b/calendar/gui/e-cal-model.c
index 617399b0a5..8ed2e5206f 100644
--- a/calendar/gui/e-cal-model.c
+++ b/calendar/gui/e-cal-model.c
@@ -1457,8 +1457,7 @@ ecm_append_row (ETableModel *etm,
if (comp_data->client)
g_object_ref (comp_data->client);
- /* guard against saving before the calendar is open */
- if (!comp_data->client || !e_client_is_opened (E_CLIENT (comp_data->client))) {
+ if (!comp_data->client) {
g_object_unref (comp_data);
return;
}
@@ -2923,10 +2922,6 @@ update_e_cal_view_for_client (ECalModel *model,
priv = model->priv;
- /* Skip if this client has not finished loading yet */
- if (!e_client_is_opened (E_CLIENT (client_data->client)))
- return;
-
/* free the previous view, if any */
if (client_data->view) {
g_signal_handlers_disconnect_matched (
@@ -2980,69 +2975,6 @@ backend_died_cb (ECalClient *client,
e_cal_model_remove_client (model, client);
}
-static void
-cal_model_retrieve_capabilies_cb (GObject *source_object,
- GAsyncResult *result,
- gpointer user_data)
-{
- ECalClient *client = E_CAL_CLIENT (source_object);
- ECalModel *model = user_data;
- ECalModelClient *client_data;
- gchar *capabilities = NULL;
-
- g_return_if_fail (client != NULL);
- g_return_if_fail (model != NULL);
-
- e_client_retrieve_capabilities_finish (
- E_CLIENT (client), result, &capabilities, NULL);
- g_free (capabilities);
-
- e_cal_model_update_status_message (model, NULL, -1.0);
-
- client_data = find_client_data (model, client);
- g_return_if_fail (client_data);
-
- update_e_cal_view_for_client (model, client_data);
-}
-
-static void
-client_opened_cb (GObject *source_object,
- GAsyncResult *result,
- gpointer user_data)
-{
- ECalClient *client = E_CAL_CLIENT (source_object);
- ECalModel *model = (ECalModel *) user_data;
- GError *error = NULL;
-
- e_client_open_finish (E_CLIENT (client), result, &error);
-
- if (g_error_matches (error, E_CLIENT_ERROR, E_CLIENT_ERROR_CANCELLED) ||
- g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) {
- g_error_free (error);
- return;
- }
-
- if (error != NULL) {
- ESource *source;
-
- source = e_client_get_source (E_CLIENT (client));
- e_cal_model_remove_client (model, client);
- g_warning (
- "%s: Failed to open '%s': %s",
- G_STRFUNC,
- e_source_get_display_name (source),
- error->message);
- g_error_free (error);
- e_cal_model_update_status_message (model, NULL, -1.0);
- return;
- }
-
- /* to have them ready for later use */
- e_client_retrieve_capabilities (
- E_CLIENT (client), model->priv->loading_clients,
- cal_model_retrieve_capabilies_cb, model);
-}
-
static ECalModelClient *
add_new_client (ECalModel *model,
ECalClient *client,
@@ -3081,23 +3013,7 @@ add_new_client (ECalModel *model,
G_CALLBACK (backend_died_cb), model);
load:
- if (e_client_is_opened (E_CLIENT (client))) {
- update_e_cal_view_for_client (model, client_data);
- } else {
- ESource *source;
- const gchar *display_name;
- gchar *msg;
-
- source = e_client_get_source (E_CLIENT (client));
- display_name = e_source_get_display_name (source);
- msg = g_strdup_printf (_("Opening %s"), display_name);
- e_cal_model_update_status_message (model, msg, -1.0);
- g_free (msg);
-
- e_cal_client_set_default_timezone (client, e_cal_model_get_timezone (model));
-
- e_client_open (E_CLIENT (client), TRUE, model->priv->loading_clients, client_opened_cb, model);
- }
+ update_e_cal_view_for_client (model, client_data);
return client_data;
}
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c
index 66bb52a0a1..c418c3241e 100644
--- a/calendar/gui/gnome-cal.c
+++ b/calendar/gui/gnome-cal.c
@@ -1177,10 +1177,6 @@ update_query_async (struct _date_query_msg *msg)
ECalClient *client = E_CAL_CLIENT (iter->data);
GError *error = NULL;
- /* don't create queries for clients not loaded yet */
- if (!e_client_is_opened (E_CLIENT (client)))
- continue;
-
new_view = NULL;
if (!e_cal_client_get_view_sync (client, real_sexp, &new_view, NULL, &error)) {
g_warning (G_STRLOC ": Could not create the view: %s ", error->message);
diff --git a/calendar/gui/tag-calendar.c b/calendar/gui/tag-calendar.c
index f681641f91..06e2bb006f 100644
--- a/calendar/gui/tag-calendar.c
+++ b/calendar/gui/tag-calendar.c
@@ -165,9 +165,6 @@ tag_calendar_by_client (ECalendar *ecal,
if (!gtk_widget_get_visible (GTK_WIDGET (ecal)))
return;
- if (!e_client_is_opened (E_CLIENT (client)))
- return;
-
closure = g_new0 (struct calendar_tag_closure, 1);
if (!prepare_tag (ecal, closure, NULL, TRUE)) {