aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-08 17:35:05 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-08 17:35:05 +0800
commitafd87cea9aef33bdd7241cd27eabb417e3587d7a (patch)
treebad3232818cdeeb3e3404d33040a498805cff992 /addressbook/gui/component
parent6bba9fe3b287e5ff7a2b0a5191ae3c549f9bc6c5 (diff)
downloadgsoc2013-evolution-afd87cea9aef33bdd7241cd27eabb417e3587d7a.tar
gsoc2013-evolution-afd87cea9aef33bdd7241cd27eabb417e3587d7a.tar.gz
gsoc2013-evolution-afd87cea9aef33bdd7241cd27eabb417e3587d7a.tar.bz2
gsoc2013-evolution-afd87cea9aef33bdd7241cd27eabb417e3587d7a.tar.lz
gsoc2013-evolution-afd87cea9aef33bdd7241cd27eabb417e3587d7a.tar.xz
gsoc2013-evolution-afd87cea9aef33bdd7241cd27eabb417e3587d7a.tar.zst
gsoc2013-evolution-afd87cea9aef33bdd7241cd27eabb417e3587d7a.zip
prepend /apps/Evolution to config db paths.
2002-11-08 Chris Toshok <toshok@ximian.com> * backend/ebook/e-book-util.c (set_default_book_uri_from_config_db): prepend /apps/Evolution to config db paths. * gui/component/select-names/e-select-names-manager.c (read_completion_books_from_db): same. (uris_listener): same. svn path=/trunk/; revision=18664
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r--addressbook/gui/component/select-names/e-select-names-manager.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-manager.c b/addressbook/gui/component/select-names/e-select-names-manager.c
index ff142ec45c..a4d6a0c1a8 100644
--- a/addressbook/gui/component/select-names/e-select-names-manager.c
+++ b/addressbook/gui/component/select-names/e-select-names-manager.c
@@ -410,7 +410,7 @@ read_completion_books_from_db (ESelectNamesManager *manager, EConfigListener *db
{
char *val;
- val = e_config_listener_get_string (db, "/Addressbook/Completion/uris");
+ val = e_config_listener_get_string (db, "/apps/Evolution/Addressbook/Completion/uris");
if (val) {
g_free (manager->cached_folder_list);
@@ -427,10 +427,10 @@ uris_listener (EConfigListener *db, const char *key,
char *val;
/* return if it's not the key we're interested in */
- if (!strcmp (key, "/Addressbook/Completion/uris"))
+ if (!strcmp (key, "/apps/Evolution/Addressbook/Completion/uris"))
return;
- val = e_config_listener_get_string (db, "/Addressbook/Completion/uris");
+ val = e_config_listener_get_string (db, "/apps/Evolution/Addressbook/Completion/uris");
if (val) {
if (!manager->cached_folder_list || strcmp (val, manager->cached_folder_list)) {