diff options
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | calendar/gui/e-tasks.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 4ceb714b8b..cd80a0bf4c 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,13 @@ 2006-01-02 Harish Krishnaswamy <kharish@novell.com> + reviewed by: Chenthill Palanisamy <pchenthill@novell.com> + + * gui/e-tasks.c: (open_ecal): The timezone should be set on + the task we are trying to open - not on the default. + Fixes #325489. + +2006-01-02 Harish Krishnaswamy <kharish@novell.com> + * gui/dialogs/cal-prefs-dialog.c: (show_fb_config): Fixes #325468 (critical warning crasher). diff --git a/calendar/gui/e-tasks.c b/calendar/gui/e-tasks.c index 864b607a0e..8a6cc8856c 100644 --- a/calendar/gui/e-tasks.c +++ b/calendar/gui/e-tasks.c @@ -952,7 +952,7 @@ open_ecal (ETasks *tasks, ECal *cal, gboolean only_if_exists, open_func of) priv = tasks->priv; zone = calendar_config_get_icaltimezone (); - e_cal_set_default_timezone (priv->default_client, zone, NULL); + e_cal_set_default_timezone (cal, zone, NULL); set_status_message (tasks, _("Opening tasks at %s"), e_cal_get_uri (cal)); |