From 3a19c40f951b46a072762dfc2b5bc393ba4b5193 Mon Sep 17 00:00:00 2001 From: Pasupathi Duraisamy Date: Wed, 5 Feb 2003 07:04:56 +0000 Subject: [PATCH] Added "/system/proxy" and "/system/http_proxy" to the list of directories 2003-02-05 Pasupathi Duraisamy * gnome-network-preferences.c: Added "/system/proxy" and "/system/http_proxy" to the list of directories GConfClient will watch. Fixes #98596 --- capplets/network/ChangeLog | 6 ++++++ capplets/network/gnome-network-preferences.c | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/capplets/network/ChangeLog b/capplets/network/ChangeLog index 02b7a0c33..6e3173aa4 100644 --- a/capplets/network/ChangeLog +++ b/capplets/network/ChangeLog @@ -1,3 +1,9 @@ +2003-02-05 Pasupathi Duraisamy + + * 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 * Release 2.2.0 diff --git a/capplets/network/gnome-network-preferences.c b/capplets/network/gnome-network-preferences.c index f1d7c4e47..4a9d11781 100644 --- a/capplets/network/gnome-network-preferences.c +++ b/capplets/network/gnome-network-preferences.c @@ -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);