diff options
author | JP Rosevear <jpr@ximian.com> | 2002-02-20 00:26:25 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2002-02-20 00:26:25 +0800 |
commit | 843b04862e48093d3a718c701c0f95e22e4bdb3e (patch) | |
tree | 7d3ed9c0f2a72415973b6b83c1ed373be098aa0b /calendar/gui/dialogs | |
parent | e17651e6354f0519cbf8c74a205b311e99d55748 (diff) | |
download | gsoc2013-evolution-843b04862e48093d3a718c701c0f95e22e4bdb3e.tar.gz gsoc2013-evolution-843b04862e48093d3a718c701c0f95e22e4bdb3e.tar.zst gsoc2013-evolution-843b04862e48093d3a718c701c0f95e22e4bdb3e.zip |
pass extra itip_send_comp params (send_freebusy): ditto (ok_clicked_cb):
002-02-19 JP Rosevear <jpr@ximian.com>
* gui/e-itip-control.c (send_item): pass extra itip_send_comp
params
(send_freebusy): ditto
(ok_clicked_cb): ditto, including the timezones culled from the
component
* gui/e-week-view.c: pass extra itip_send_comp params
* gui/calendar-commands.c: ditto
* gui/e-day-view.c: ditto
* gui/dialogs/task-editor.c: ditto
* gui/dialogs/event-editor.c: ditto
* gui/dialogs/comp-editor.c: ditto
* gui/itip-utils.h (itip_send_comp): update proto
* gui/itip-utils.c (foreach_tzid_callback): check the passed in
zones, then the builtin time zones then the client
2002-02-19 JP Rosevear <jpr@ximian.com>
* gui/e-itip-control.c (find_my_address): strip the ical value and
do a case insensitive compare
(find_attendee): ditto
(change_status): put the error message here
(ok_clicked_cb): don't update the item or rsvp unless
change_status was successful, trip the ical value and do a case
insensitive compare
* gui/itip-utils.c (get_address): strip the incoming address
(itip_strip_mailto): use g_strncasecmp
(comp_limit_attendees): strip the ical value and do a case
insensitive compare
svn path=/trunk/; revision=15763
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 2 | ||||
-rw-r--r-- | calendar/gui/dialogs/event-editor.c | 7 | ||||
-rw-r--r-- | calendar/gui/dialogs/task-editor.c | 7 |
3 files changed, 11 insertions, 5 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 14bee4e9a7..7615e79589 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -852,7 +852,7 @@ real_send_comp (CompEditor *editor, CalComponentItipMethod method) priv = editor->priv; - itip_send_comp (method, priv->comp); + itip_send_comp (method, priv->comp, priv->client, NULL); } diff --git a/calendar/gui/dialogs/event-editor.c b/calendar/gui/dialogs/event-editor.c index 9e6f501efe..4c0862c9f7 100644 --- a/calendar/gui/dialogs/event-editor.c +++ b/calendar/gui/dialogs/event-editor.c @@ -299,8 +299,11 @@ event_editor_send_comp (CompEditor *editor, CalComponentItipMethod method) goto parent; comp = meeting_page_get_cancel_comp (priv->meet_page); - if (comp != NULL) { - itip_send_comp (CAL_COMPONENT_METHOD_CANCEL, comp); + if (comp != NULL) { + CalClient *client; + + client = e_meeting_model_get_cal_client (priv->model); + itip_send_comp (CAL_COMPONENT_METHOD_CANCEL, comp, client, NULL); gtk_object_unref (GTK_OBJECT (comp)); } diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c index e59582873f..c5c4d61826 100644 --- a/calendar/gui/dialogs/task-editor.c +++ b/calendar/gui/dialogs/task-editor.c @@ -261,8 +261,11 @@ task_editor_send_comp (CompEditor *editor, CalComponentItipMethod method) goto parent; comp = meeting_page_get_cancel_comp (priv->meet_page); - if (comp != NULL) { - itip_send_comp (CAL_COMPONENT_METHOD_CANCEL, comp); + if (comp != NULL) { + CalClient *client; + + client = e_meeting_model_get_cal_client (priv->model); + itip_send_comp (CAL_COMPONENT_METHOD_CANCEL, comp, client, NULL); gtk_object_unref (GTK_OBJECT (comp)); } |