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
This commit is contained in:
Damon Chaplin
2001-11-14 20:29:39 +00:00
committed by Damon Chaplin
parent 417af81526
commit 21a7225dbc
2 changed files with 6 additions and 1 deletions

View File

@ -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> 2001-11-12 Iain Holmes <iain@ximian.com>
* e-shell-startup-wizard.c (make_identity_page): Check for exception. * e-shell-startup-wizard.c (make_identity_page): Check for exception.

View File

@ -347,7 +347,7 @@ finish_func (GnomeDruidPage *page,
e_timezone_dialog_get_timezone (E_TIMEZONE_DIALOG (data->timezone_page->etd), &displayname); e_timezone_dialog_get_timezone (E_TIMEZONE_DIALOG (data->timezone_page->etd), &displayname);
if (displayname == NULL) if (displayname == NULL)
tz = g_strdup (""); tz = g_strdup ("UTC");
else else
tz = g_strdup (displayname); tz = g_strdup (displayname);