aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamon Chaplin <damon@ximian.com>2001-11-15 04:29:39 +0800
committerDamon Chaplin <damon@src.gnome.org>2001-11-15 04:29:39 +0800
commit21a7225dbcde4ec617ffd51f1f633f4c6750d024 (patch)
tree15101b310162c25d3005a9039ffbcbc60f002c68
parent417af815269ebb26ea9768fa69e970111a47224b (diff)
downloadgsoc2013-evolution-21a7225dbcde4ec617ffd51f1f633f4c6750d024.tar
gsoc2013-evolution-21a7225dbcde4ec617ffd51f1f633f4c6750d024.tar.gz
gsoc2013-evolution-21a7225dbcde4ec617ffd51f1f633f4c6750d024.tar.bz2
gsoc2013-evolution-21a7225dbcde4ec617ffd51f1f633f4c6750d024.tar.lz
gsoc2013-evolution-21a7225dbcde4ec617ffd51f1f633f4c6750d024.tar.xz
gsoc2013-evolution-21a7225dbcde4ec617ffd51f1f633f4c6750d024.tar.zst
gsoc2013-evolution-21a7225dbcde4ec617ffd51f1f633f4c6750d024.zip
make timezone default to "UTC" rather than "".
2001-11-14 Damon Chaplin <damon@ximian.com> * e-shell-startup-wizard.c (finish_func): make timezone default to "UTC" rather than "". svn path=/trunk/; revision=14700
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-shell-startup-wizard.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 4bbb1c6c53..f5f222429d 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,8 @@
+2001-11-14 Damon Chaplin <damon@ximian.com>
+
+ * e-shell-startup-wizard.c (finish_func): make timezone default to
+ "UTC" rather than "".
+
2001-11-12 Iain Holmes <iain@ximian.com>
* e-shell-startup-wizard.c (make_identity_page): Check for exception.
diff --git a/shell/e-shell-startup-wizard.c b/shell/e-shell-startup-wizard.c
index bb7f5ddbab..a65aa1799f 100644
--- a/shell/e-shell-startup-wizard.c
+++ b/shell/e-shell-startup-wizard.c
@@ -347,7 +347,7 @@ finish_func (GnomeDruidPage *page,
e_timezone_dialog_get_timezone (E_TIMEZONE_DIALOG (data->timezone_page->etd), &displayname);
if (displayname == NULL)
- tz = g_strdup ("");
+ tz = g_strdup ("UTC");
else
tz = g_strdup (displayname);