diff options
author | Damon Chaplin <damon@ximian.com> | 2001-10-23 08:29:53 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2001-10-23 08:29:53 +0800 |
commit | 8c83f5222f938d2a6bf9256014a0423af32ac73a (patch) | |
tree | d381be48dbeb92be0c5431de6cad037881dae0b0 /my-evolution/e-summary-tasks.c | |
parent | 04bda8ad1e0cb676d711dbf0f22ff9f4fb615891 (diff) | |
download | gsoc2013-evolution-8c83f5222f938d2a6bf9256014a0423af32ac73a.tar.gz gsoc2013-evolution-8c83f5222f938d2a6bf9256014a0423af32ac73a.tar.zst gsoc2013-evolution-8c83f5222f938d2a6bf9256014a0423af32ac73a.zip |
set the default timezone on the server.
2001-10-22 Damon Chaplin <damon@ximian.com>
* e-summary-tasks.c (generate_html): set the default timezone on the
server.
* e-summary-calendar.c (e_cal_comp_util_compare_event_timezones):
update to check for DATE values.
(uids_to_array): pass the default timezone
to cal_recur_generate_instances.
(generate_html): set the default timezone on the server.
svn path=/trunk/; revision=13921
Diffstat (limited to 'my-evolution/e-summary-tasks.c')
-rw-r--r-- | my-evolution/e-summary-tasks.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/my-evolution/e-summary-tasks.c b/my-evolution/e-summary-tasks.c index 529af3f90e..1b2548ac57 100644 --- a/my-evolution/e-summary-tasks.c +++ b/my-evolution/e-summary-tasks.c @@ -217,6 +217,12 @@ generate_html (gpointer data) char *tmp; time_t t; + /* Set the default timezone on the server. */ + if (summary->tz) { + cal_client_set_default_timezone (tasks->client, + summary->tz); + } + t = time (NULL); uids = cal_client_get_uids (tasks->client, CALOBJ_TYPE_TODO); |