aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/comp-util.c
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2006-04-06 17:12:52 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2006-04-06 17:12:52 +0800
commit59796b5cbc66f41f0904e7df020502ade245324e (patch)
tree0867df8ea152976f0ef143dcd62962c443f8a2f5 /calendar/gui/comp-util.c
parenta60393cc5dbe80f65e5766ab68efb4cc65fe8a06 (diff)
downloadgsoc2013-evolution-59796b5cbc66f41f0904e7df020502ade245324e.tar
gsoc2013-evolution-59796b5cbc66f41f0904e7df020502ade245324e.tar.gz
gsoc2013-evolution-59796b5cbc66f41f0904e7df020502ade245324e.tar.bz2
gsoc2013-evolution-59796b5cbc66f41f0904e7df020502ade245324e.tar.lz
gsoc2013-evolution-59796b5cbc66f41f0904e7df020502ade245324e.tar.xz
gsoc2013-evolution-59796b5cbc66f41f0904e7df020502ade245324e.tar.zst
gsoc2013-evolution-59796b5cbc66f41f0904e7df020502ade245324e.zip
Fixes #162005
svn path=/trunk/; revision=31776
Diffstat (limited to 'calendar/gui/comp-util.c')
-rw-r--r--calendar/gui/comp-util.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/gui/comp-util.c b/calendar/gui/comp-util.c
index fad01446da..32257b6be9 100644
--- a/calendar/gui/comp-util.c
+++ b/calendar/gui/comp-util.c
@@ -205,7 +205,7 @@ cal_comp_util_compare_event_timezones (ECalComponent *comp,
gboolean
cal_comp_is_on_server (ECalComponent *comp, ECal *client)
{
- const char *uid;
+ const char *uid, *rid;
icalcomponent *icalcomp;
GError *error = NULL;
@@ -221,8 +221,9 @@ cal_comp_is_on_server (ECalComponent *comp, ECal *client)
* the user.
*/
e_cal_component_get_uid (comp, &uid);
+ rid = e_cal_component_get_recurid_as_string (comp);
- if (e_cal_get_object (client, uid, NULL, &icalcomp, &error)) {
+ if (e_cal_get_object (client, uid, rid, &icalcomp, &error)) {
icalcomponent_free (icalcomp);
return TRUE;