diff options
author | Milan Crha <mcrha@redhat.com> | 2012-06-14 16:45:01 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-06-14 16:45:56 +0800 |
commit | e8dc7d80f7cc775b2904cd362141df8740a9ce66 (patch) | |
tree | 58f2943c72068225873ca33511c229441b5e2041 /modules/calendar | |
parent | a6ace09525b799ad5ee68df4942e808bc92641a5 (diff) | |
download | gsoc2013-evolution-e8dc7d80f7cc775b2904cd362141df8740a9ce66.tar gsoc2013-evolution-e8dc7d80f7cc775b2904cd362141df8740a9ce66.tar.gz gsoc2013-evolution-e8dc7d80f7cc775b2904cd362141df8740a9ce66.tar.bz2 gsoc2013-evolution-e8dc7d80f7cc775b2904cd362141df8740a9ce66.tar.lz gsoc2013-evolution-e8dc7d80f7cc775b2904cd362141df8740a9ce66.tar.xz gsoc2013-evolution-e8dc7d80f7cc775b2904cd362141df8740a9ce66.tar.zst gsoc2013-evolution-e8dc7d80f7cc775b2904cd362141df8740a9ce66.zip |
Adapt to evolution-data-server's port from GConf to GSettings
Diffstat (limited to 'modules/calendar')
-rw-r--r-- | modules/calendar/e-cal-shell-settings.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/modules/calendar/e-cal-shell-settings.c b/modules/calendar/e-cal-shell-settings.c index 943e28e38f..e160d18810 100644 --- a/modules/calendar/e-cal-shell-settings.c +++ b/modules/calendar/e-cal-shell-settings.c @@ -31,6 +31,7 @@ #include <e-util/e-util-enumtypes.h> #define CALENDAR_SCHEMA "org.gnome.evolution.calendar" +#define EDS_CALENDAR_CONTACTS_SCHEMA "org.gnome.evolution-data-server.calendar" static gboolean transform_string_to_icaltimezone (GBinding *binding, @@ -526,13 +527,13 @@ e_cal_shell_backend_init_settings (EShell *shell) e_shell_settings_install_property_for_key ( "cal-ba-reminder-interval", - CALENDAR_SCHEMA, - "ba-reminder-interval"); + EDS_CALENDAR_CONTACTS_SCHEMA, + "contacts-reminder-interval"); e_shell_settings_install_property_for_key ( "cal-ba-reminder-units-string", - CALENDAR_SCHEMA, - "ba-reminder-units"); + EDS_CALENDAR_CONTACTS_SCHEMA, + "contacts-reminder-units"); e_shell_settings_install_property_for_key ( "cal-compress-weekend", @@ -676,8 +677,8 @@ e_cal_shell_backend_init_settings (EShell *shell) e_shell_settings_install_property_for_key ( "cal-use-ba-reminder", - CALENDAR_SCHEMA, - "use-ba-reminder"); + EDS_CALENDAR_CONTACTS_SCHEMA, + "contacts-reminder-enabled"); e_shell_settings_install_property_for_key ( "cal-use-default-reminder", |