1
0
mirror of https://github.com/irssi/irssi.git synced 2024-10-27 05:20:20 -04:00

Closing window didn't update window activity list.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@678 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-09-27 00:08:03 +00:00 committed by cras
parent bae879de22
commit 407ee2bd1b
2 changed files with 6 additions and 11 deletions

View File

@ -101,8 +101,6 @@ static void windows_pack(int removed_refnum)
void window_destroy(WINDOW_REC *window)
{
int refnum;
g_return_if_fail(window != NULL);
if (window->destroying) return;
@ -117,17 +115,16 @@ void window_destroy(WINDOW_REC *window)
while (window->items != NULL)
window_remove_item(window, window->items->data);
windows_pack(window->refnum);
signal_emit("window destroyed", 1, window);
g_slist_foreach(window->waiting_channels, (GFunc) g_free, NULL);
g_slist_free(window->waiting_channels);
refnum = window->refnum;
g_free_not_null(window->theme_name);
g_free_not_null(window->name);
g_free(window);
windows_pack(refnum);
}
void window_set_active(WINDOW_REC *window)

View File

@ -464,13 +464,11 @@ static void sig_statusbar_activity_hilight(WINDOW_REC *window, gpointer oldlevel
static void sig_statusbar_activity_window_destroyed(WINDOW_REC *window)
{
g_return_if_fail(window != NULL);
g_return_if_fail(window != NULL);
if (g_list_find(activity_list, window) != NULL)
{
activity_list = g_list_remove(activity_list, window);
statusbar_item_redraw(activity_item);
}
if (g_list_find(activity_list, window) != NULL)
activity_list = g_list_remove(activity_list, window);
statusbar_item_redraw(activity_item);
}
/* redraw -- more -- */