diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-12-02 19:41:09 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-12-02 19:41:09 +0800 |
commit | 1fa20d55cebadbdfdd580d3db0a8b5b4c73486bf (patch) | |
tree | d51683ad731fb1aa53ba064322251797b1caa238 | |
parent | aa9105691b3b14f016146adaecd5694bfc436796 (diff) | |
download | gsoc2013-epiphany-1fa20d55cebadbdfdd580d3db0a8b5b4c73486bf.tar gsoc2013-epiphany-1fa20d55cebadbdfdd580d3db0a8b5b4c73486bf.tar.gz gsoc2013-epiphany-1fa20d55cebadbdfdd580d3db0a8b5b4c73486bf.tar.bz2 gsoc2013-epiphany-1fa20d55cebadbdfdd580d3db0a8b5b4c73486bf.tar.lz gsoc2013-epiphany-1fa20d55cebadbdfdd580d3db0a8b5b4c73486bf.tar.xz gsoc2013-epiphany-1fa20d55cebadbdfdd580d3db0a8b5b4c73486bf.tar.zst gsoc2013-epiphany-1fa20d55cebadbdfdd580d3db0a8b5b4c73486bf.zip |
Add /system/http_proxy to list of directories to monitor.
2003-12-02 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/mozilla-notifiers.cpp:
Add /system/http_proxy to list of directories to monitor.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | embed/mozilla/mozilla-notifiers.cpp | 5 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2003-12-02 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/mozilla-notifiers.cpp: + + Add /system/http_proxy to list of directories to monitor. + 2003-12-02 Xan Lopez <xan@masilla.org> * data/mime-types-permissions.xml: diff --git a/embed/mozilla/mozilla-notifiers.cpp b/embed/mozilla/mozilla-notifiers.cpp index b25b3696d..105700302 100644 --- a/embed/mozilla/mozilla-notifiers.cpp +++ b/embed/mozilla/mozilla-notifiers.cpp @@ -1,5 +1,6 @@ /* * Copyright (C) 2000 Nate Case + * Copyright (C) 2003 Marco Pesenti Gritti * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -14,6 +15,8 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Id$ */ #ifdef HAVE_CONFIG_H @@ -451,6 +454,7 @@ mozilla_notifiers_init (EphyEmbedSingle *single) eel_gconf_monitor_add ("/apps/epiphany/web"); eel_gconf_monitor_add ("/system/proxy"); + eel_gconf_monitor_add ("/system/http_proxy"); #ifdef MIGRATE_PIXEL_SIZE gboolean migrate_size; @@ -608,6 +612,7 @@ mozilla_notifiers_free (void) { eel_gconf_monitor_remove ("/apps/epiphany/web"); eel_gconf_monitor_remove ("/system/proxy"); + eel_gconf_monitor_remove ("/system/http_proxy"); g_list_foreach (mozilla_notifiers, (GFunc)eel_gconf_notification_remove, |