diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-11-16 21:34:36 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-11-16 21:34:36 +0800 |
commit | 1e7b267e2f2b459991ec797423146974936f54f7 (patch) | |
tree | fbdf7f7cad003af5ea12d1f73ec737578fa5e669 /embed/mozilla/mozilla-notifiers.h | |
parent | 6ca0ed69fcf77dc21c5501bd6685d0872f282330 (diff) | |
download | gsoc2013-epiphany-1e7b267e2f2b459991ec797423146974936f54f7.tar gsoc2013-epiphany-1e7b267e2f2b459991ec797423146974936f54f7.tar.gz gsoc2013-epiphany-1e7b267e2f2b459991ec797423146974936f54f7.tar.bz2 gsoc2013-epiphany-1e7b267e2f2b459991ec797423146974936f54f7.tar.lz gsoc2013-epiphany-1e7b267e2f2b459991ec797423146974936f54f7.tar.xz gsoc2013-epiphany-1e7b267e2f2b459991ec797423146974936f54f7.tar.zst gsoc2013-epiphany-1e7b267e2f2b459991ec797423146974936f54f7.zip |
Make mozilla_notifier_add return the connection ID, and
2004-11-16 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/mozilla-notifiers.cpp:
* embed/mozilla/mozilla-notifiers.h:
Make mozilla_notifier_add return the connection ID, and
mozilla_notifier_remove take that.
Diffstat (limited to 'embed/mozilla/mozilla-notifiers.h')
-rw-r--r-- | embed/mozilla/mozilla-notifiers.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/embed/mozilla/mozilla-notifiers.h b/embed/mozilla/mozilla-notifiers.h index 711031000..5e942f564 100644 --- a/embed/mozilla/mozilla-notifiers.h +++ b/embed/mozilla/mozilla-notifiers.h @@ -38,13 +38,11 @@ gboolean mozilla_notifier_transform_int (GConfValue *, GValue *); gboolean mozilla_notifier_transform_string (GConfValue *, GValue *); -void mozilla_notifier_add (const char *gconf_key, +guint mozilla_notifier_add (const char *gconf_key, const char *mozilla_pref, PrefValueTransformFunc func); -void mozilla_notifier_remove (const char *gconf_key, - const char *mozilla_pref, - PrefValueTransformFunc func); +void mozilla_notifier_remove (guint id); void mozilla_notifiers_init (void); |