diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-10-26 03:19:13 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-10-26 03:19:13 +0800 |
commit | edd48d92ae634d1b32269ddb1d2b3152eb800169 (patch) | |
tree | 6e065fb9b6e4bc023b5e62376fe74d8cc0de7623 /src/ephy-shell.c | |
parent | da7d0959009b472233de886affce4ed9a81b2475 (diff) | |
download | gsoc2013-epiphany-edd48d92ae634d1b32269ddb1d2b3152eb800169.tar.gz gsoc2013-epiphany-edd48d92ae634d1b32269ddb1d2b3152eb800169.tar.zst gsoc2013-epiphany-edd48d92ae634d1b32269ddb1d2b3152eb800169.zip |
De-couple instantiation and initialisation of the extensions manager.
2004-10-25 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-extensions-manager.c: (ephy_extensions_manager_init),
(ephy_extensions_manager_startup):
* src/ephy-extensions-manager.h:
* src/ephy-shell.c: (ephy_shell_get_extensions_manager):
De-couple instantiation and initialisation of the extensions manager.
Fixes double-instance and weirdness and double-type-registration
on startup when extensions use the session in their instance_init.
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r-- | src/ephy-shell.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 9703ac719..49ff5d9a7 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -694,6 +694,8 @@ ephy_shell_get_extensions_manager (EphyShell *es) /* Instantiate extensions manager */ es->priv->extensions_manager = g_object_new (EPHY_TYPE_EXTENSIONS_MANAGER, NULL); + + ephy_extensions_manager_startup (es->priv->extensions_manager); } return G_OBJECT (es->priv->extensions_manager); |