diff options
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-startup-wizard.c | 2 |
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); |