diff options
author | Milan Crha <mcrha@redhat.com> | 2009-10-16 17:37:34 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-10-16 17:37:34 +0800 |
commit | 14c68f8e45dad27b09047e03929517111344219f (patch) | |
tree | 895c03a9c3072953be9558771785f947849266ea | |
parent | 93040de356b53196e097099f46d9a6ea6718e7e6 (diff) | |
download | gsoc2013-evolution-14c68f8e45dad27b09047e03929517111344219f.tar.gz gsoc2013-evolution-14c68f8e45dad27b09047e03929517111344219f.tar.zst gsoc2013-evolution-14c68f8e45dad27b09047e03929517111344219f.zip |
Bug #596860 - Duplicate event gets shown in calendar view
Interim/partial solution.
-rw-r--r-- | calendar/gui/e-cal-model.c | 5 | ||||
-rw-r--r-- | modules/calendar/e-cal-shell-view-private.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/calendar/gui/e-cal-model.c b/calendar/gui/e-cal-model.c index cf515d55b6..33c209e1c5 100644 --- a/calendar/gui/e-cal-model.c +++ b/calendar/gui/e-cal-model.c @@ -2130,6 +2130,11 @@ add_new_client (ECalModel *model, ECal *client, gboolean do_query) /* Look to see if we already have this client */ client_data = find_client_data (model, client); if (client_data) { + if (do_query && client_data->client == priv->default_client) { + g_warning ("%s: %s: You shouldn't request a query on a default client", G_STRLOC, G_STRFUNC); + return client_data; + } + if (client_data->do_query) return client_data; else diff --git a/modules/calendar/e-cal-shell-view-private.c b/modules/calendar/e-cal-shell-view-private.c index 89d8ef5ba9..8a7e3766e3 100644 --- a/modules/calendar/e-cal-shell-view-private.c +++ b/modules/calendar/e-cal-shell-view-private.c @@ -328,8 +328,6 @@ cal_shell_view_user_created_cb (ECalShellView *cal_shell_view, cal_shell_sidebar = cal_shell_view->priv->cal_shell_sidebar; e_cal_shell_sidebar_add_source (cal_shell_sidebar, source); - - e_cal_model_add_client (model, client); } static void |