aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@novell.com>2006-01-02 17:49:25 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-01-02 17:49:25 +0800
commitb06a8cc610490dd051eb313c0e0b8a455feef655 (patch)
treeeaf61c96d59dc540f1c2413126c0a6be67fde137 /calendar
parenteed9261c670a23ece55ebbff4c59201771046746 (diff)
downloadgsoc2013-evolution-b06a8cc610490dd051eb313c0e0b8a455feef655.tar
gsoc2013-evolution-b06a8cc610490dd051eb313c0e0b8a455feef655.tar.gz
gsoc2013-evolution-b06a8cc610490dd051eb313c0e0b8a455feef655.tar.bz2
gsoc2013-evolution-b06a8cc610490dd051eb313c0e0b8a455feef655.tar.lz
gsoc2013-evolution-b06a8cc610490dd051eb313c0e0b8a455feef655.tar.xz
gsoc2013-evolution-b06a8cc610490dd051eb313c0e0b8a455feef655.tar.zst
gsoc2013-evolution-b06a8cc610490dd051eb313c0e0b8a455feef655.zip
The timezone should be set on the task we are trying to open - not on the
2006-01-02 Harish Krishnaswamy <kharish@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. svn path=/trunk/; revision=31019
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/gui/e-tasks.c2
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));