diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-12-02 19:46:39 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-12-02 19:46:39 +0800 |
commit | 59c363cefbf791b75a131fb7f227f4d5e53516d4 (patch) | |
tree | 9ae5d59086b24fef671ee6eb27433ec942261413 | |
parent | bb7155427eff79afe8021acf2c3234a7c19b046d (diff) | |
download | gsoc2013-epiphany-59c363cefbf791b75a131fb7f227f4d5e53516d4.tar gsoc2013-epiphany-59c363cefbf791b75a131fb7f227f4d5e53516d4.tar.gz gsoc2013-epiphany-59c363cefbf791b75a131fb7f227f4d5e53516d4.tar.bz2 gsoc2013-epiphany-59c363cefbf791b75a131fb7f227f4d5e53516d4.tar.lz gsoc2013-epiphany-59c363cefbf791b75a131fb7f227f4d5e53516d4.tar.xz gsoc2013-epiphany-59c363cefbf791b75a131fb7f227f4d5e53516d4.tar.zst gsoc2013-epiphany-59c363cefbf791b75a131fb7f227f4d5e53516d4.zip |
Monitor /system/http_proxy for proxy changes.
2003-12-02 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-shell.c: (ephy_init_services):
Monitor /system/http_proxy for proxy changes.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-shell.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2003-12-02 Christian Persch <chpe@cvs.gnome.org> + + * src/ephy-shell.c: (ephy_init_services): + + Monitor /system/http_proxy for proxy changes. + 2003-11-10 Christian Persch <chpe@cvs.gnome.org> * lib/egg/egg-toolbars-model.c: (egg_toolbars_model_load): diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 351660e4b..e8f52b50e 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -328,6 +328,7 @@ ephy_init_services (EphyShell *gs) /* it also enables notifiers support */ eel_gconf_monitor_add ("/apps/epiphany"); eel_gconf_monitor_add ("/system/proxy"); + eel_gconf_monitor_add ("/system/http_proxy"); #ifdef ENABLE_NAUTILUS_VIEW |