aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-config.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-07-17 18:44:01 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-07-17 18:44:01 +0800
commite05eb7f89e180a734a07ee6576f56b8bfa84fc17 (patch)
treeb9c8812b9cfdc194771e5a48d0956e39b89aa06b /calendar/gui/calendar-config.c
parentaa13b072540d842997c87d1b400382b4e724de48 (diff)
downloadgsoc2013-evolution-e05eb7f89e180a734a07ee6576f56b8bfa84fc17.tar
gsoc2013-evolution-e05eb7f89e180a734a07ee6576f56b8bfa84fc17.tar.gz
gsoc2013-evolution-e05eb7f89e180a734a07ee6576f56b8bfa84fc17.tar.bz2
gsoc2013-evolution-e05eb7f89e180a734a07ee6576f56b8bfa84fc17.tar.lz
gsoc2013-evolution-e05eb7f89e180a734a07ee6576f56b8bfa84fc17.tar.xz
gsoc2013-evolution-e05eb7f89e180a734a07ee6576f56b8bfa84fc17.tar.zst
gsoc2013-evolution-e05eb7f89e180a734a07ee6576f56b8bfa84fc17.zip
s/expunge/purge.
2003-07-17 Rodrigo Moya <rodrigo@ximian.com> * gui/calendar-config.[ch]: * gui/tasks-control.c: s/expunge/purge. svn path=/trunk/; revision=21853
Diffstat (limited to 'calendar/gui/calendar-config.c')
-rw-r--r--calendar/gui/calendar-config.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/calendar/gui/calendar-config.c b/calendar/gui/calendar-config.c
index 83cd5650c5..84f334beff 100644
--- a/calendar/gui/calendar-config.c
+++ b/calendar/gui/calendar-config.c
@@ -499,30 +499,30 @@ calendar_config_set_confirm_delete (gboolean confirm)
}
/**
- * calendar_config_get_confirm_expunge:
+ * calendar_config_get_confirm_purge:
*
* Queries the configuration value for whether a confirmation dialog is
- * presented when expunging calendar/tasks items.
+ * presented when purging calendar/tasks items.
*
- * Return value: Whether confirmation is required when expunging items.
+ * Return value: Whether confirmation is required when purging items.
**/
gboolean
-calendar_config_get_confirm_expunge (void)
+calendar_config_get_confirm_purge (void)
{
- return e_config_listener_get_boolean_with_default (config, "/apps/evolution/calendar/prompts/confirm_expunge", TRUE, NULL);
+ return e_config_listener_get_boolean_with_default (config, "/apps/evolution/calendar/prompts/confirm_purge", TRUE, NULL);
}
/**
- * calendar_config_set_confirm_expunge:
- * @confirm: Whether confirmation is required when expunging items.
+ * calendar_config_set_confirm_purge:
+ * @confirm: Whether confirmation is required when purging items.
*
* Sets the configuration value for whether a confirmation dialog is presented
- * when expunging calendar/tasks items.
+ * when purging calendar/tasks items.
**/
void
-calendar_config_set_confirm_expunge (gboolean confirm)
+calendar_config_set_confirm_purge (gboolean confirm)
{
- e_config_listener_set_boolean (config, "/apps/evolution/calendar/prompts/confirm_expunge", confirm);
+ e_config_listener_set_boolean (config, "/apps/evolution/calendar/prompts/confirm_purge", confirm);
}
/* This sets all the common config settings for an ECalendar widget.