aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--src/ephy-tabs-menu.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c644d098..ae36c4b65 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);