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
This commit is contained in:
Dan Winship
2003-05-16 19:20:34 +00:00
parent a878c6c70b
commit 47ae0b0247
2 changed files with 6 additions and 1 deletions

View File

@ -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

View File

@ -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);