Added "/system/proxy" and "/system/http_proxy" to the list of directories

2003-02-05 Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>

        * gnome-network-preferences.c: Added "/system/proxy" and
        "/system/http_proxy" to the list of directories GConfClient
        will watch. Fixes #98596
This commit is contained in:
Pasupathi Duraisamy 2003-02-05 07:04:56 +00:00 committed by Pasupathi Duraisamy
parent e4d106c33c
commit 3a19c40f95
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2003-02-05 Pasupathi Duraisamy <pasupathi.duraisamy@wipro.com>
* gnome-network-preferences.c: Added "/system/proxy" and
"/system/http_proxy" to the list of directories GConfClient
will watch. Fixes #98596
Tue Jan 21 01:15:14 2003 Jonathan Blandford <jrb@gnome.org>
* Release 2.2.0

View file

@ -287,6 +287,10 @@ main (int argc, char **argv)
client = gconf_client_get_default ();
gconf_client_add_dir (client, "/system/gnome-vfs",
GCONF_CLIENT_PRELOAD_ONELEVEL, NULL);
gconf_client_add_dir (client, "/system/http_proxy",
GCONF_CLIENT_PRELOAD_ONELEVEL, NULL);
gconf_client_add_dir (client, "/system/proxy",
GCONF_CLIENT_PRELOAD_ONELEVEL, NULL);
dialog = glade_xml_new (GNOMECC_DATA_DIR "/interfaces/gnome-network-preferences.glade",
"network_dialog", NULL);