diff options
author | Dan Winship <danw@src.gnome.org> | 2003-05-17 03:20:34 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-05-17 03:20:34 +0800 |
commit | 47ae0b0247745a911a28409bec3a31a3596fc264 (patch) | |
tree | 77b420794bb454dc950e25d46f4567de3b97c27a /e-util | |
parent | a878c6c70b44dc2478acf379603c3c69034cfb7f (diff) | |
download | gsoc2013-evolution-47ae0b0247745a911a28409bec3a31a3596fc264.tar gsoc2013-evolution-47ae0b0247745a911a28409bec3a31a3596fc264.tar.gz gsoc2013-evolution-47ae0b0247745a911a28409bec3a31a3596fc264.tar.bz2 gsoc2013-evolution-47ae0b0247745a911a28409bec3a31a3596fc264.tar.lz gsoc2013-evolution-47ae0b0247745a911a28409bec3a31a3596fc264.tar.xz gsoc2013-evolution-47ae0b0247745a911a28409bec3a31a3596fc264.tar.zst gsoc2013-evolution-47ae0b0247745a911a28409bec3a31a3596fc264.zip |
Removing trailing / in key name passed to gconf_client_notify_add to kill
* e-proxy.c (e_proxy_init): Removing trailing / in key name passed
to gconf_client_notify_add to kill a warning. (Part of #43159)
svn path=/trunk/; revision=21223
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-proxy.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index a7cff29c1b..f376240c42 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2003-05-16 Dan Winship <danw@ximian.com> + + * e-proxy.c (e_proxy_init): Removing trailing / in key name passed + to gconf_client_notify_add to kill a warning. (Part of #43159) + 2003-05-16 Jeremy Katz <katzj@redhat.com> * e-sexp.c (term_eval_and): Use glib macros for pointer/int diff --git a/e-util/e-proxy.c b/e-util/e-proxy.c index f47231c84c..4ffbeb94a2 100644 --- a/e-util/e-proxy.c +++ b/e-util/e-proxy.c @@ -89,7 +89,7 @@ e_proxy_init () gconf_client_add_dir (client, "/system/http_proxy", GCONF_CLIENT_PRELOAD_ONELEVEL, NULL); - gconf_client_notify_add (client, "/system/http_proxy/", + gconf_client_notify_add (client, "/system/http_proxy", proxy_setting_changed, NULL, NULL, NULL); set_proxy (client); |