diff options
author | Emmanuele Bassi <ebassi@cvs.gnome.org> | 2005-10-31 02:37:18 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-10-31 02:37:18 +0800 |
commit | fde24ab0878f35c43b037a646bd22c78165a0139 (patch) | |
tree | 91477c71f5e11d8788bcb6789ca415c98281ef1d /lib/ephy-glade.c | |
parent | b693cc1a050fdb0d2e7cb358d7e2d5af528f855c (diff) | |
download | gsoc2013-epiphany-fde24ab0878f35c43b037a646bd22c78165a0139.tar.gz gsoc2013-epiphany-fde24ab0878f35c43b037a646bd22c78165a0139.tar.zst gsoc2013-epiphany-fde24ab0878f35c43b037a646bd22c78165a0139.zip |
Use G_MODULE_BIND_LAZY when dlopening modules.
2005-10-30 Emmanuele Bassi <ebassi@cvs.gnome.org>
* lib/ephy-glade.c: (glade_signal_connect_func):
* lib/ephy-module.c: (ephy_module_load):
Use G_MODULE_BIND_LAZY when dlopening modules.
Diffstat (limited to 'lib/ephy-glade.c')
-rw-r--r-- | lib/ephy-glade.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ephy-glade.c b/lib/ephy-glade.c index ce91c9954..75dc067e3 100644 --- a/lib/ephy-glade.c +++ b/lib/ephy-glade.c @@ -95,7 +95,7 @@ glade_signal_connect_func (const gchar *cb_name, GObject *obj, /* initialize gmodule */ if (mod_self == NULL) { - mod_self = g_module_open (NULL, 0); + mod_self = g_module_open (NULL, G_MODULE_BIND_LAZY); g_assert (mod_self != NULL); } |