aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-config-listener.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-04 00:16:11 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-04 00:16:11 +0800
commitb4afa536b35bd34334314f937bf784a8ea627b20 (patch)
treedefd8a5c32e892dc7d20b5aec1a883da88ad931c /e-util/e-config-listener.c
parent778218388e281680e3f2b7e841e86b85dbae32e1 (diff)
downloadgsoc2013-evolution-b4afa536b35bd34334314f937bf784a8ea627b20.tar
gsoc2013-evolution-b4afa536b35bd34334314f937bf784a8ea627b20.tar.gz
gsoc2013-evolution-b4afa536b35bd34334314f937bf784a8ea627b20.tar.bz2
gsoc2013-evolution-b4afa536b35bd34334314f937bf784a8ea627b20.tar.lz
gsoc2013-evolution-b4afa536b35bd34334314f937bf784a8ea627b20.tar.xz
gsoc2013-evolution-b4afa536b35bd34334314f937bf784a8ea627b20.tar.zst
gsoc2013-evolution-b4afa536b35bd34334314f937bf784a8ea627b20.zip
Removed unused variable. (e_config_listener_get_long_with_default):
* e-config-listener.c (e_config_listener_get_float_with_default): Removed unused variable. (e_config_listener_get_long_with_default): Likewise. (e_config_listener_get_string_with_default): Likewise. * Makefile.am: Compile e-config-listener.[ch]. svn path=/trunk/; revision=18507
Diffstat (limited to 'e-util/e-config-listener.c')
-rw-r--r--e-util/e-config-listener.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/e-util/e-config-listener.c b/e-util/e-config-listener.c
index 56be81371f..cf8c1f69cf 100644
--- a/e-util/e-config-listener.c
+++ b/e-util/e-config-listener.c
@@ -296,7 +296,6 @@ e_config_listener_get_float_with_default (EConfigListener *cl,
GConfValue *conf_value;
float value;
KeyData *kd;
- gboolean d;
gpointer orig_key, orig_value;
g_return_val_if_fail (E_IS_CONFIG_LISTENER (cl), -1);
@@ -344,7 +343,6 @@ e_config_listener_get_long_with_default (EConfigListener *cl,
GConfValue *conf_value;
long value;
KeyData *kd;
- gboolean d;
gpointer orig_key, orig_value;
g_return_val_if_fail (E_IS_CONFIG_LISTENER (cl), -1);
@@ -392,7 +390,6 @@ e_config_listener_get_string_with_default (EConfigListener *cl,
GConfValue *conf_value;
const char *str;
KeyData *kd;
- gboolean d;
gpointer orig_key, orig_value;
g_return_val_if_fail (E_IS_CONFIG_LISTENER (cl), NULL);