diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-06-14 15:52:40 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-06-14 15:52:40 +0800 |
commit | 9f723bd51a7edea0c802b10cc83cb4df3a23fdf5 (patch) | |
tree | fc9f49b540b1c03c1154ae389ad5fe718e487eac | |
parent | ea1261df41c42eb68d84adf6a8ade6eda87d9388 (diff) | |
download | gsoc2013-evolution-9f723bd51a7edea0c802b10cc83cb4df3a23fdf5.tar.gz gsoc2013-evolution-9f723bd51a7edea0c802b10cc83cb4df3a23fdf5.tar.zst gsoc2013-evolution-9f723bd51a7edea0c802b10cc83cb4df3a23fdf5.zip |
Pass startup timezone as NULL, so that the local timezone will be shown.
svn path=/trunk/; revision=32133
-rw-r--r-- | plugins/startup-wizard/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/startup-wizard/startup-wizard.c | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/plugins/startup-wizard/ChangeLog b/plugins/startup-wizard/ChangeLog index 98820b5423..cf72fe35cb 100644 --- a/plugins/startup-wizard/ChangeLog +++ b/plugins/startup-wizard/ChangeLog @@ -1,3 +1,8 @@ +2006-06-14 Srinivasa Ragavan <sragavan@novell.com> + + * startup-wizard.c: (startup_wizard_timezone_page): Pass the default + timezone as NULL, so that it picks up from the local timezone. + 2005-12-30 Andre Klapper <a9016009@gmx.de> * evolution/plugins/startup-wizard/org-gnome-evolution-startup-wizard.eplug.xml: diff --git a/plugins/startup-wizard/startup-wizard.c b/plugins/startup-wizard/startup-wizard.c index b1eeb0578b..eceb683c2c 100644 --- a/plugins/startup-wizard/startup-wizard.c +++ b/plugins/startup-wizard/startup-wizard.c @@ -110,9 +110,7 @@ startup_wizard_timezone_page (EPlugin *ep, EConfigHookItemFactoryData *hook_data page = gnome_druid_page_standard_new_with_vals ("Timezone", NULL, NULL); e_timezone_dialog_reparent (etd, GNOME_DRUID_PAGE_STANDARD (page)->vbox); - zone = calendar_config_get_icaltimezone (); - if (zone) - e_timezone_dialog_set_timezone (etd, zone); + e_timezone_dialog_set_timezone (etd, NULL); gnome_druid_append_page (GNOME_DRUID (hook_data->parent), GNOME_DRUID_PAGE (page)); |