aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/bbdb/bbdb.h
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@gnome-db.org>2011-11-18 00:19:48 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-11-18 00:19:48 +0800
commit73656ae57ee8a42678e09b07c5d85fe45b9844a6 (patch)
treeb8e127c47eea456c27c9d534384801c74c9e7cfe /plugins/bbdb/bbdb.h
parent30f7d3788f7dad3dee700d36570baa11f4612634 (diff)
downloadgsoc2013-evolution-73656ae57ee8a42678e09b07c5d85fe45b9844a6.tar
gsoc2013-evolution-73656ae57ee8a42678e09b07c5d85fe45b9844a6.tar.gz
gsoc2013-evolution-73656ae57ee8a42678e09b07c5d85fe45b9844a6.tar.bz2
gsoc2013-evolution-73656ae57ee8a42678e09b07c5d85fe45b9844a6.tar.lz
gsoc2013-evolution-73656ae57ee8a42678e09b07c5d85fe45b9844a6.tar.xz
gsoc2013-evolution-73656ae57ee8a42678e09b07c5d85fe45b9844a6.tar.zst
gsoc2013-evolution-73656ae57ee8a42678e09b07c5d85fe45b9844a6.zip
Port autocontacts plugin to GSettings
Diffstat (limited to 'plugins/bbdb/bbdb.h')
-rw-r--r--plugins/bbdb/bbdb.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/bbdb/bbdb.h b/plugins/bbdb/bbdb.h
index 82951a7566..3bd8cce880 100644
--- a/plugins/bbdb/bbdb.h
+++ b/plugins/bbdb/bbdb.h
@@ -22,14 +22,14 @@
#define __BBDB_H__
/* Where to store the config values */
-#define GCONF_ROOT_PATH "/apps/evolution/autocontacts"
-#define GCONF_KEY_ENABLE GCONF_ROOT_PATH "/enable_autocontacts"
-#define GCONF_KEY_ENABLE_GAIM GCONF_ROOT_PATH "/auto_sync_gaim"
-#define GCONF_KEY_WHICH_ADDRESSBOOK GCONF_ROOT_PATH "/addressbook_source"
-#define GCONF_KEY_WHICH_ADDRESSBOOK_GAIM GCONF_ROOT_PATH "/gaim_addressbook_source"
-#define GCONF_KEY_GAIM_LAST_SYNC_TIME GCONF_ROOT_PATH "/gaim_last_sync_time"
-#define GCONF_KEY_GAIM_LAST_SYNC_MD5 GCONF_ROOT_PATH "/gaim_last_sync_md5"
-#define GCONF_KEY_GAIM_CHECK_INTERVAL GCONF_ROOT_PATH "/gaim_check_interval"
+#define CONF_SCHEMA "org.gnome.evolution.eplugin.autocontacts"
+#define CONF_KEY_ENABLE "enable"
+#define CONF_KEY_ENABLE_GAIM "auto-sync-gaim"
+#define CONF_KEY_WHICH_ADDRESSBOOK "addressbook-source"
+#define CONF_KEY_WHICH_ADDRESSBOOK_GAIM "gaim-addressbook-source"
+#define CONF_KEY_GAIM_LAST_SYNC_TIME "gaim-last-sync-time"
+#define CONF_KEY_GAIM_LAST_SYNC_MD5 "gaim-last-sync-md5"
+#define CONF_KEY_GAIM_CHECK_INTERVAL "gaim-check-interval"
/* How often to poll the buddy list for changes (every two minutes is default) */
#define BBDB_BLIST_DEFAULT_CHECK_INTERVAL (2 * 60)