From a6febf98900ac2e7b3f3787bad26fdb568370e9d Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Thu, 22 Sep 2011 17:44:42 +0200 Subject: Port some calendar plugins to use GSettings --- plugins/save-calendar/rdf-format.c | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) (limited to 'plugins/save-calendar') diff --git a/plugins/save-calendar/rdf-format.c b/plugins/save-calendar/rdf-format.c index c93eb1fb59..b5f1e283d0 100644 --- a/plugins/save-calendar/rdf-format.c +++ b/plugins/save-calendar/rdf-format.c @@ -45,27 +45,14 @@ static void add_string_to_rdf (xmlNodePtr node, const gchar *tag, const gchar *value); -/* Use { */ - -/* #include */ -/* #include */ - -/* } or { */ -#define CALENDAR_CONFIG_PREFIX "/apps/evolution/calendar" -#define CALENDAR_CONFIG_TIMEZONE CALENDAR_CONFIG_PREFIX "/display/timezone" - -static GConfClient *config = NULL; - static gchar * calendar_config_get_timezone (void) { - + GSettings *settings; gchar *retval = NULL; - if (!config) - config = gconf_client_get_default (); - - retval = gconf_client_get_string (config, CALENDAR_CONFIG_TIMEZONE, NULL); + settings = g_settings_new ("org.gnome.evolution.calendar"); + retval = g_settings_get_string (settings, "timezone"); if (!retval) retval = g_strdup ("UTC"); -- cgit v1.2.3