Thu, 02 Aug 2001 01:12:41 +0000
[gaim-migrate @ 2116]
i had reason for this being here.
| src/server.c | file | annotate | diff | comparison | revisions |
--- a/src/server.c Wed Aug 01 22:18:54 2001 +0000 +++ b/src/server.c Thu Aug 02 01:12:41 2001 +0000 @@ -396,6 +396,14 @@ struct conversation *cnv; int new_conv = 0; + /* we should update the conversation window buttons and menu, if it exists. */ + cnv = find_conversation(name); + if (cnv) + set_convo_gc(cnv, gc); + /* we do the new_conv check here in case any plugins decide to create it */ + else + new_conv = 1; + /* plugin stuff. we pass a char ** but we don't want to pass what's been given us * by the prpls. so we create temp holders and pass those instead. it's basically * just to avoid segfaults. */ @@ -413,14 +421,6 @@ name = angel; message = buffy; - /* we should update the conversation window buttons and menu, if it exists. */ - cnv = find_conversation(name); - if (cnv) - set_convo_gc(cnv, gc); - /* we do the new_conv check here in case any plugins decide to create it */ - else - new_conv = 1; - /* TiK, using TOC, sends an automated message in order to get your away message. Now, * this is one of the biggest hacks I think I've seen. But, in order to be nice to * TiK, we're going to give users the option to ignore it. */