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:
@ -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
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user