aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-06-01 21:10:16 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-06-01 21:10:16 +0800
commit6477dd65708b286001b487ca89d4d5066a25bbfd (patch)
tree267f6fff036d60d4d3d5376ccac66bfc47e12a3d /modules
parent815c8776bbeee8e937db73c2006846ab9606ffb0 (diff)
downloadgsoc2013-evolution-6477dd65708b286001b487ca89d4d5066a25bbfd.tar
gsoc2013-evolution-6477dd65708b286001b487ca89d4d5066a25bbfd.tar.gz
gsoc2013-evolution-6477dd65708b286001b487ca89d4d5066a25bbfd.tar.bz2
gsoc2013-evolution-6477dd65708b286001b487ca89d4d5066a25bbfd.tar.lz
gsoc2013-evolution-6477dd65708b286001b487ca89d4d5066a25bbfd.tar.xz
gsoc2013-evolution-6477dd65708b286001b487ca89d4d5066a25bbfd.tar.zst
gsoc2013-evolution-6477dd65708b286001b487ca89d4d5066a25bbfd.zip
Add a boolean return to e_cal_model_add_client().
The function now returns TRUE if the ECalClient was actually added to the model, or FALSE if the model already had the ECalClient. Use this to avoid an unnecessary gnome_calendar_update_query() call in cal_shell_view_selector_client_added_cb().
Diffstat (limited to 'modules')
-rw-r--r--modules/calendar/e-cal-shell-view-private.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/calendar/e-cal-shell-view-private.c b/modules/calendar/e-cal-shell-view-private.c
index a03da0463f..94176c31f3 100644
--- a/modules/calendar/e-cal-shell-view-private.c
+++ b/modules/calendar/e-cal-shell-view-private.c
@@ -335,9 +335,8 @@ cal_shell_view_selector_client_added_cb (ECalShellView *cal_shell_view,
calendar = e_cal_shell_content_get_calendar (cal_shell_content);
model = gnome_calendar_get_model (calendar);
- e_cal_model_add_client (model, client);
-
- gnome_calendar_update_query (calendar);
+ if (e_cal_model_add_client (model, client))
+ gnome_calendar_update_query (calendar);
}
static void