summaryrefslogtreecommitdiff
path: root/src/fe-common/core/fe-channels.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-12-02 07:55:55 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-12-02 07:55:55 +0000
commite881761d8658dfc4b815f145d4c7bb6e18e94f0a (patch)
tree0a222aa9afa0e26eb3a5adc78d1169ab853def7b /src/fe-common/core/fe-channels.c
parentcfd50ce9cdbeab86ac5d25499f081326481584fc (diff)
downloadirssi-e881761d8658dfc4b815f145d4c7bb6e18e94f0a.zip
"window item remove" signal: destroy the channel/query record _last_
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@919 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/core/fe-channels.c')
-rw-r--r--src/fe-common/core/fe-channels.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-channels.c b/src/fe-common/core/fe-channels.c
index 3d2fd644..1d697480 100644
--- a/src/fe-common/core/fe-channels.c
+++ b/src/fe-common/core/fe-channels.c
@@ -294,7 +294,7 @@ void fe_channels_init(void)
signal_add("channel created", (SIGNAL_FUNC) signal_channel_created);
signal_add("channel destroyed", (SIGNAL_FUNC) signal_channel_destroyed);
- signal_add("window item remove", (SIGNAL_FUNC) signal_window_item_removed);
+ signal_add_last("window item remove", (SIGNAL_FUNC) signal_window_item_removed);
signal_add_last("window item changed", (SIGNAL_FUNC) signal_window_item_changed);
signal_add_last("server disconnected", (SIGNAL_FUNC) sig_disconnected);