diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-01-13 19:02:32 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-01-13 19:02:32 +0800 |
commit | 8a35fece1b96e7b3d3938a2e9bfe7467908fbf42 (patch) | |
tree | 92e81e3699e6cc2f20af543e02fc966a449ae32a /calendar/gui/calendar-config.c | |
parent | f4f4f94e728d3973f7d780ca9390795c31e07578 (diff) | |
download | gsoc2013-evolution-8a35fece1b96e7b3d3938a2e9bfe7467908fbf42.tar.gz gsoc2013-evolution-8a35fece1b96e7b3d3938a2e9bfe7467908fbf42.tar.zst gsoc2013-evolution-8a35fece1b96e7b3d3938a2e9bfe7467908fbf42.zip |
fixes #213660
svn path=/trunk/; revision=31167
Diffstat (limited to 'calendar/gui/calendar-config.c')
-rw-r--r-- | calendar/gui/calendar-config.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/calendar/gui/calendar-config.c b/calendar/gui/calendar-config.c index 6128931476..e8de54d1af 100644 --- a/calendar/gui/calendar-config.c +++ b/calendar/gui/calendar-config.c @@ -1331,3 +1331,19 @@ calendar_config_add_notification_free_busy_template (GConfClientNotifyFunc func, return id; } + +void +calendar_config_set_dir_path (const gchar *path) +{ + gconf_client_set_string (config, CALENDAR_CONFIG_SAVE_DIR, path, NULL); +} + +char * +calendar_config_get_dir_path (void) +{ + char *path; + + path = gconf_client_get_string (config, CALENDAR_CONFIG_SAVE_DIR, NULL); + + return path; +} |