aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/timeutil.c
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1998-04-22 13:19:51 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-04-22 13:19:51 +0800
commit821548d922e719881f5dff34a34b3d6285b10855 (patch)
tree54c20eeb1fc960a4a0d5ea864741efb8215d09e5 /calendar/timeutil.c
parent6b159ed2c33a1a208395f9b57b7d61d7c1d04842 (diff)
downloadgsoc2013-evolution-821548d922e719881f5dff34a34b3d6285b10855.tar
gsoc2013-evolution-821548d922e719881f5dff34a34b3d6285b10855.tar.gz
gsoc2013-evolution-821548d922e719881f5dff34a34b3d6285b10855.tar.bz2
gsoc2013-evolution-821548d922e719881f5dff34a34b3d6285b10855.tar.lz
gsoc2013-evolution-821548d922e719881f5dff34a34b3d6285b10855.tar.xz
gsoc2013-evolution-821548d922e719881f5dff34a34b3d6285b10855.tar.zst
gsoc2013-evolution-821548d922e719881f5dff34a34b3d6285b10855.zip
1. Calendar property configuration is finally here with nice live-updates.
1. Calendar property configuration is finally here with nice live-updates. 2. Double clicking on week view jumps to that day in the day view; Context menu allows adding an appointment on that day. Miguel. svn path=/trunk/; revision=182
Diffstat (limited to 'calendar/timeutil.c')
-rw-r--r--calendar/timeutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/timeutil.c b/calendar/timeutil.c
index 85652d3146..61df809a93 100644
--- a/calendar/timeutil.c
+++ b/calendar/timeutil.c
@@ -57,7 +57,7 @@ isodate_from_time_t (time_t t)
static char isotime [40];
tm = localtime (&t);
- strftime (isotime, sizeof (isotime)-1, "%Y%m%dT%H%M%SZ", tm);
+ strftime (isotime, sizeof (isotime)-1, "%Y%m%dT%H%M%S ", tm);
return isotime;
}