comparison src/conversation.c @ 3597:bc87186a7478

[gaim-migrate @ 3699] I wrote two plugins tonight, emulating features of other clients. history.c - this puts the last 4kb of your message log in new conversations This was first done by EB, copied by Trillian Pro and gets requested of us once in a while. timestamp.c - adds iChat-style timestamps to conversations. Never use iChat? it puts an inconspicuous timestamp at the top of new conversations and then keeps adding them every 5 minutes. It's hard to explain really--try it out. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sun, 06 Oct 2002 07:56:14 +0000
parents bb966d68f9e3
children abb114442532
comparison
equal deleted inserted replaced
3596:bb966d68f9e3 3597:bc87186a7478
2036 g_free(t2); 2036 g_free(t2);
2037 g_free(nm); 2037 g_free(nm);
2038 } 2038 }
2039 } 2039 }
2040 2040
2041 if ((c->is_chat && (chat_options & OPT_CHAT_POPUP)) || 2041 if (!flags & WFLAG_NOLOG && ((c->is_chat && (chat_options & OPT_CHAT_POPUP)) ||
2042 (!c->is_chat && (im_options & OPT_IM_POPUP))) 2042 (!c->is_chat && (im_options & OPT_IM_POPUP))))
2043 gdk_window_show(c->window->window); 2043 gdk_window_show(c->window->window);
2044 if (flags & WFLAG_RECV) 2044 if (flags & WFLAG_RECV)
2045 reset_typing(g_strdup(c->name)); 2045 reset_typing(g_strdup(c->name));
2046 2046
2047 /* tab highlighting */ 2047 /* tab highlighting */