diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/ephy-shell.c | 3 |
2 files changed, 10 insertions, 0 deletions
@@ -1,5 +1,12 @@ 2003-11-13 Marco Pesenti Gritti <marco@gnome.org> + * src/ephy-shell.c: (ephy_shell_finalize): + + Looks like we need to unregister factory since + we initialized it by ourself. + +2003-11-13 Marco Pesenti Gritti <marco@gnome.org> + * embed/mozilla/mozilla-notifiers.cpp: * src/ephy-main.c: (main): * src/ephy-shell.c: (ephy_shell_init), (ephy_shell_startup), diff --git a/src/ephy-shell.c b/src/ephy-shell.c index a661ceceb..4d11fec89 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -358,6 +358,9 @@ ephy_shell_finalize (GObject *object) if (gs->priv->automation_factory) { + bonobo_activation_unregister_active_server + (AUTOMATION_FACTORY_IID, BONOBO_OBJREF (gs->priv->automation_factory)); + bonobo_object_unref (gs->priv->automation_factory); } |