diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 8a6a170703..5a058fe8ab 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2004-09-24 Chenthill Palanisamy <pchenthill@novell.com> + + Fixes #63513 + * gui/e-itip-control.c + (ok_clicked_cb): Now the myaddress can be set to ecal address + since ok will be sentized only when ecal is loaded. + 2004-09-22 JP Rosevear <jpr@novell.com> * gui/calendar-component.c (fill_popup_menu_cb): ditto diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index d1de4301e2..e07fa0bb4d 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -2420,6 +2420,9 @@ ok_clicked_cb (GtkWidget *widget, gpointer data) priv = itip->priv; + if (!priv->my_address && priv->current_ecal != NULL) + e_cal_get_cal_address (priv->current_ecal, &priv->my_address, NULL); + switch (priv->action) { case 'U': update_item (itip); |