diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-tabs-menu.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2005-03-14 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-tabs-menu.c: (tab_removed_cb): + + Fix signal handler disconnection; bug #170353. + +2005-03-14 Christian Persch <chpe@cvs.gnome.org> + * lib/ephy-gui.c: (ephy_gui_is_middle_click): * lib/ephy-gui.h: * lib/widgets/ephy-node-view.c: (ephy_node_view_key_press_cb), diff --git a/src/ephy-tabs-menu.c b/src/ephy-tabs-menu.c index 4208ed478..d28bb9a56 100644 --- a/src/ephy-tabs-menu.c +++ b/src/ephy-tabs-menu.c @@ -191,7 +191,7 @@ tab_removed_cb (EphyNotebook *notebook, (tab, G_CALLBACK (sync_tab_title), action); g_signal_handlers_disconnect_by_func - (action, G_CALLBACK (tab_action_activate_cb), tab); + (action, G_CALLBACK (tab_action_activate_cb), menu); g_object_set_data (G_OBJECT (tab), DATA_KEY, NULL); gtk_action_group_remove_action (priv->action_group, action); |