aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2002-08-09 03:47:45 +0800
committerJP Rosevear <jpr@src.gnome.org>2002-08-09 03:47:45 +0800
commita599d0dd765ac86cf0f1f069b19f15a8179b9c05 (patch)
tree1fffef60ed9521b7d426ee434697229e04bfc7c7 /calendar/pcs
parenta2726b7dc3a10c8660fc8377334c2a9f279387a8 (diff)
downloadgsoc2013-evolution-a599d0dd765ac86cf0f1f069b19f15a8179b9c05.tar
gsoc2013-evolution-a599d0dd765ac86cf0f1f069b19f15a8179b9c05.tar.gz
gsoc2013-evolution-a599d0dd765ac86cf0f1f069b19f15a8179b9c05.tar.bz2
gsoc2013-evolution-a599d0dd765ac86cf0f1f069b19f15a8179b9c05.tar.lz
gsoc2013-evolution-a599d0dd765ac86cf0f1f069b19f15a8179b9c05.tar.xz
gsoc2013-evolution-a599d0dd765ac86cf0f1f069b19f15a8179b9c05.tar.zst
gsoc2013-evolution-a599d0dd765ac86cf0f1f069b19f15a8179b9c05.zip
check for an attendee in the list (comp_to_list): only add the user if
2002-08-08 JP Rosevear <jpr@ximian.com> * gui/itip-utils.c (users_has_attendee): check for an attendee in the list (comp_to_list): only add the user if they aren't on the list (comp_server_send): don't remove the users, pass back the list (itip_send_comp): send to server before doing comp_minimal * gui/dialogs/comp-editor.c (real_send_comp): edit and save the updated comp * pcs/cal.c (impl_Cal_send_object): copy the correct item to pass back svn path=/trunk/; revision=17747
Diffstat (limited to 'calendar/pcs')
-rw-r--r--calendar/pcs/cal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/pcs/cal.c b/calendar/pcs/cal.c
index 4f8ff173f0..3abff9cf98 100644
--- a/calendar/pcs/cal.c
+++ b/calendar/pcs/cal.c
@@ -460,7 +460,7 @@ impl_Cal_send_object (PortableServer_Servant servant,
result = cal_backend_send_object (priv->backend, calobj, &new_calobj, user_list);
switch (result) {
case CAL_BACKEND_SEND_SUCCESS:
- calobj_copy = CORBA_string_dup (calobj);
+ calobj_copy = CORBA_string_dup (new_calobj);
g_free (new_calobj);
return calobj_copy;