aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-12-07 13:15:26 +0800
committerChris Toshok <toshok@src.gnome.org>2002-12-07 13:15:26 +0800
commit2e2fa87f5061f7885c2836790806cfc8b7343062 (patch)
tree65d2ccdfbf870f2ccb7e8a7f53dbdd0438af8d11
parent4b74fdf033dc4e4e71155adbe89ca3845cfb302c (diff)
downloadgsoc2013-evolution-2e2fa87f5061f7885c2836790806cfc8b7343062.tar
gsoc2013-evolution-2e2fa87f5061f7885c2836790806cfc8b7343062.tar.gz
gsoc2013-evolution-2e2fa87f5061f7885c2836790806cfc8b7343062.tar.bz2
gsoc2013-evolution-2e2fa87f5061f7885c2836790806cfc8b7343062.tar.lz
gsoc2013-evolution-2e2fa87f5061f7885c2836790806cfc8b7343062.tar.xz
gsoc2013-evolution-2e2fa87f5061f7885c2836790806cfc8b7343062.tar.zst
gsoc2013-evolution-2e2fa87f5061f7885c2836790806cfc8b7343062.zip
change to a more gconf-like path (with underscores, etc.) (ecmlw_save):
2002-12-06 Chris Toshok <toshok@ximian.com> * e-categories-master-list-wombat.c (ecmlw_load): change to a more gconf-like path (with underscores, etc.) (ecmlw_save): same. svn path=/trunk/; revision=19051
-rw-r--r--e-util/ChangeLog6
-rw-r--r--e-util/e-categories-master-list-wombat.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 97f643ad23..af7e2f3ef8 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,9 @@
+2002-12-06 Chris Toshok <toshok@ximian.com>
+
+ * e-categories-master-list-wombat.c (ecmlw_load): change to a more
+ gconf-like path (with underscores, etc.)
+ (ecmlw_save): same.
+
2002-11-26 Dan Winship <danw@ximian.com>
* e-lang-utils.c (e_get_language_list): If the language is
diff --git a/e-util/e-categories-master-list-wombat.c b/e-util/e-categories-master-list-wombat.c
index 2c7571b63a..9e45199877 100644
--- a/e-util/e-categories-master-list-wombat.c
+++ b/e-util/e-categories-master-list-wombat.c
@@ -34,7 +34,7 @@ ecmlw_load (ECategoriesMasterListWombat *ecmlw)
gboolean def;
string = e_config_listener_get_string_with_default (ecmlw->priv->listener,
- "/apps/Evolution/General/CategoryMasterList",
+ "/apps/evolution/general/category_master_list",
NULL,
&def);
/* parse the XML string */
@@ -58,7 +58,7 @@ ecmlw_save (ECategoriesMasterListWombat *ecmlw)
d(g_print ("save: %s\n", string));
e_config_listener_set_string (ecmlw->priv->listener,
- "/apps/Evolution/General/CategoryMasterList",
+ "/apps/evolution/general/category_master_list",
string);
g_free (string);