diff options
author | JP Rosevear <jpr@ximian.com> | 2004-01-14 02:07:32 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-01-14 02:07:32 +0800 |
commit | 39e6fc90623f50b7cd28850b8a0463d37e09a758 (patch) | |
tree | 67ffaa3c30b82c885a722331b924732a5b3e5fe6 /shell | |
parent | 86cecef40be6942a5f6b670bdd8b690b642cbdcc (diff) | |
download | gsoc2013-evolution-39e6fc90623f50b7cd28850b8a0463d37e09a758.tar.gz gsoc2013-evolution-39e6fc90623f50b7cd28850b8a0463d37e09a758.tar.zst gsoc2013-evolution-39e6fc90623f50b7cd28850b8a0463d37e09a758.zip |
drop my-evolution upgrade code
2004-01-13 JP Rosevear <jpr@ximian.com>
* e-config-upgrade.c: drop my-evolution upgrade code
svn path=/trunk/; revision=24204
Diffstat (limited to 'shell')
-rw-r--r-- | shell/e-config-upgrade.c | 36 |
1 files changed, 1 insertions, 35 deletions
diff --git a/shell/e-config-upgrade.c b/shell/e-config-upgrade.c index 82857d4d47..cb5a08e89f 100644 --- a/shell/e-config-upgrade.c +++ b/shell/e-config-upgrade.c @@ -1249,36 +1249,6 @@ static struct _gconf_map importer_netscape_map[] = { /* ********************************************************************** */ -static struct _gconf_map myev_mail_map[] = { - /* /My-Evolution/Mail */ - { "show_full_path", "summary/mail/show_full_paths", BMAP_BOOL }, - { 0 }, -}; - -static struct _gconf_map myev_rdf_map[] = { - /* /My-Evolution/RDF */ - { "rdf_urls", "summary/rdf/uris", BMAP_STRLIST }, - { "rdf_refresh_time", "summary/rdf/refresh_time", BMAP_INT }, - { "limit", "summary/rdf/max_items", BMAP_INT }, - { 0 }, -}; - -static struct _gconf_map myev_weather_map[] = { - /* /My-Evolution/Weather */ - { "stations", "summary/weather/stations", BMAP_STRLIST }, - { "units", "summary/weather/use_metric", BMAP_BOOL }, /* this is use_metric bool in 1.3? */ - { "weather_refresh_time", "summary/weather/refresh_time", BMAP_INT }, - { 0 }, -}; - -static struct _gconf_map myev_schedule_map[] = { - /* /My-Evolution/Shedule */ - { "show_tasks", "summary/tasks/show_all", BMAP_BOOL }, /* this is show_all bool in 1.3? */ - { 0 }, -}; - -/* ********************************************************************** */ - /* This grabs the defaults from the first view ... (?) */ static struct _gconf_map shell_views_map[] = { /* /Shell/Views/0 */ @@ -1420,11 +1390,6 @@ static struct { { "/Importer/Pine", importer_pine_map }, { "/Importer/Netscape", importer_netscape_map }, - { "My-Evolution/Mail", myev_mail_map }, - { "My-Evolution/RDF", myev_rdf_map }, - { "My-Evolution/Weather", myev_weather_map }, - { "My-Evolution/Schedule", myev_schedule_map }, - { "/Shell", shell_map }, { "/Shell/Views/0", shell_views_map }, { "/OfflineFolders", offlinefolders_map }, @@ -1927,3 +1892,4 @@ error: return res; } + |