aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-01 21:34:30 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-01 22:33:35 +0800
commit3c14ae32fe27e548d86926ab23633f1749cb25a3 (patch)
tree836d4f48469fcbd016580f5c7434a36102126a77
parentaeca299b6102b917767d2cd0ac1753e843fd839c (diff)
downloadgsoc2013-evolution-3c14ae32fe27e548d86926ab23633f1749cb25a3.tar
gsoc2013-evolution-3c14ae32fe27e548d86926ab23633f1749cb25a3.tar.gz
gsoc2013-evolution-3c14ae32fe27e548d86926ab23633f1749cb25a3.tar.bz2
gsoc2013-evolution-3c14ae32fe27e548d86926ab23633f1749cb25a3.tar.lz
gsoc2013-evolution-3c14ae32fe27e548d86926ab23633f1749cb25a3.tar.xz
gsoc2013-evolution-3c14ae32fe27e548d86926ab23633f1749cb25a3.tar.zst
gsoc2013-evolution-3c14ae32fe27e548d86926ab23633f1749cb25a3.zip
Minor efficiency tweak in task_shell_view_model_row_appended_cb().
Call e_task_shell_sidebar_add_client() instead of add_source(). No point asynchronously obtaining the client if we already have it. (cherry picked from commit 52feeacf8d8da8ec169efbe40b4e75385a9bb7fe)
-rw-r--r--modules/calendar/e-task-shell-view-private.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/calendar/e-task-shell-view-private.c b/modules/calendar/e-task-shell-view-private.c
index 6a64a8d9f0..2e8e6dd3f2 100644
--- a/modules/calendar/e-task-shell-view-private.c
+++ b/modules/calendar/e-task-shell-view-private.c
@@ -33,15 +33,13 @@ task_shell_view_model_row_appended_cb (ETaskShellView *task_shell_view,
{
ETaskShellSidebar *task_shell_sidebar;
ECalClient *client;
- ESource *source;
/* This is the "Click to Add" handler. */
client = e_cal_model_ref_default_client (model);
- source = e_client_get_source (E_CLIENT (client));
task_shell_sidebar = task_shell_view->priv->task_shell_sidebar;
- e_task_shell_sidebar_add_source (task_shell_sidebar, source);
+ e_task_shell_sidebar_add_client (task_shell_sidebar, E_CLIENT (client));
g_object_unref (client);
}