Mercurial > pidgin.yaz
diff src/conversation.c @ 9633:81b31af2752d
[gaim-migrate @ 10477]
[ gaim-Bugs-847795 ] HTML log files not closed properly on exit
The fix is twofold. First, make gaim_conversations_uninit, destroy conversation
windows. Second, reorder things in core_quit, to keep plugins loaded until the
end and to keep the gtk main loop from quitting until after everything else
is uninitialized.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Sun, 01 Aug 2004 17:12:13 +0000 |
parents | 8a540b8a5f70 |
children | 676cf082d29c |
line wrap: on
line diff
--- a/src/conversation.c Sun Aug 01 13:04:50 2004 +0000 +++ b/src/conversation.c Sun Aug 01 17:12:13 2004 +0000 @@ -2994,5 +2994,8 @@ void gaim_conversations_uninit(void) { + gaim_signals_unregister_by_instance(gaim_conversations_get_handle()); + while (conversations) + gaim_conversation_destroy((GaimConversation*)conversations->data); }