diff options
Diffstat (limited to 'mixgtk/mixgtk_config.c')
-rw-r--r-- | mixgtk/mixgtk_config.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mixgtk/mixgtk_config.c b/mixgtk/mixgtk_config.c index 052dea5..0dad33e 100644 --- a/mixgtk/mixgtk_config.c +++ b/mixgtk/mixgtk_config.c @@ -1,7 +1,7 @@ /* -*-c-*- -------------- mixgtk_config.c : * Implementation of the functions declared in mixgtk_config.h * ------------------------------------------------------------------ - * Last change: Time-stamp: "2001-04-29 14:53:06 jao" + * $Id: mixgtk_config.c,v 1.7 2001/09/18 22:50:30 jao Exp $ * ------------------------------------------------------------------ * Copyright (C) 2001 Free Software Foundation, Inc. * @@ -87,6 +87,12 @@ mixgtk_config_get (const gchar *key) return mix_config_get (config_, key); } +void +mixgtk_config_remove (const char *key) +{ + mix_config_remove (config_, key); +} + /* save configuration */ void mixgtk_config_save (void) |