diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-03-15 01:58:44 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-03-15 01:58:44 +0800 |
commit | 1cd057fbc1422e10b4b489718dc1f76e8da847c9 (patch) | |
tree | afd3c3666ea43e6e9c107e6fb4bb8b03d8ac7184 /src/ephy-tabs-menu.c | |
parent | 0d8dd611e669275c40f3113d22b97d467e3545c4 (diff) | |
download | gsoc2013-epiphany-1cd057fbc1422e10b4b489718dc1f76e8da847c9.tar gsoc2013-epiphany-1cd057fbc1422e10b4b489718dc1f76e8da847c9.tar.gz gsoc2013-epiphany-1cd057fbc1422e10b4b489718dc1f76e8da847c9.tar.bz2 gsoc2013-epiphany-1cd057fbc1422e10b4b489718dc1f76e8da847c9.tar.lz gsoc2013-epiphany-1cd057fbc1422e10b4b489718dc1f76e8da847c9.tar.xz gsoc2013-epiphany-1cd057fbc1422e10b4b489718dc1f76e8da847c9.tar.zst gsoc2013-epiphany-1cd057fbc1422e10b4b489718dc1f76e8da847c9.zip |
Fix signal handler disconnection; bug #170353.
2005-03-14 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-tabs-menu.c: (tab_removed_cb):
Fix signal handler disconnection; bug #170353.
Diffstat (limited to 'src/ephy-tabs-menu.c')
-rw-r--r-- | src/ephy-tabs-menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |