diff options
author | Chris Toshok <toshok@ximian.com> | 2003-06-26 00:52:18 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-06-26 00:52:18 +0800 |
commit | 87e3905bf8ce45df3bcf3890a1e7a66387ca5325 (patch) | |
tree | 22aa09a645f9e2b6d9cab5fb310e8147f3d33acb /shell | |
parent | ca2508fa81a8b94495220be9a6413509a074c149 (diff) | |
download | gsoc2013-evolution-87e3905bf8ce45df3bcf3890a1e7a66387ca5325.tar.gz gsoc2013-evolution-87e3905bf8ce45df3bcf3890a1e7a66387ca5325.tar.zst gsoc2013-evolution-87e3905bf8ce45df3bcf3890a1e7a66387ca5325.zip |
add general_map and a reference to it in gconf_remap_list. Should fix
2003-06-25 Chris Toshok <toshok@ximian.com>
* e-config-upgrade.c: add general_map and a reference to it in
gconf_remap_list. Should fix 44477.
svn path=/trunk/; revision=21544
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-config-upgrade.c | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 347dabb27e..616127ba0a 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2003-06-25 Chris Toshok <toshok@ximian.com> + + * e-config-upgrade.c: add general_map and a reference to it in + gconf_remap_list. Should fix 44477. + 2003-06-19 Dan Winship <danw@ximian.com> * e-folder-tree.c (e_folder_tree_add): Don't leak parent_path, diff --git a/shell/e-config-upgrade.c b/shell/e-config-upgrade.c index a1f0e14bd9..26ff6c247f 100644 --- a/shell/e-config-upgrade.c +++ b/shell/e-config-upgrade.c @@ -1352,6 +1352,11 @@ static struct _gconf_map calendar_alarmnotify_map[] = { { 0 }, }; +static struct _gconf_map general_map[] = { + /* /General */ + { "CategoryMasterList", "general/category_master_list", BMAP_STRING } +}; + /* ********************************************************************** */ static struct { @@ -1392,6 +1397,8 @@ static struct { { "/Calendar/DateNavigator", calendar_datenavigator_map }, { "/Calendar/AlarmNotify", calendar_alarmnotify_map }, + { "/General", general_map }, + { 0 }, }; |