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
This commit is contained in:
Chris Toshok
2002-12-07 05:15:26 +00:00
committed by Chris Toshok
parent 4b74fdf033
commit 2e2fa87f50
2 changed files with 8 additions and 2 deletions
+6
View File
@@ -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
+2 -2
View File
@@ -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);