comparison src/conversation.c @ 12463:b1717befbb26

[gaim-migrate @ 14773] SF Patch #1377719 from Evan Schoenberg "A recent reorganization of how the chat_add_users() conversation UI op is sent removed passing to the UI of whether the additions are new arrivals or not. This information lets the UI make decisions about how to handle the new people, what if anything to display, etc." committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 12 Dec 2005 07:35:43 +0000
parents f9629b994b27
children 71299d63801d
comparison
equal deleted inserted replaced
12462:398bdfe07c57 12463:b1717befbb26
1520 /* This needs to be in the same order as users, but it's faster 1520 /* This needs to be in the same order as users, but it's faster
1521 * to prepend, so we do that above. */ 1521 * to prepend, so we do that above. */
1522 aliases = g_list_reverse(aliases); 1522 aliases = g_list_reverse(aliases);
1523 1523
1524 if (ops != NULL && ops->chat_add_users != NULL) 1524 if (ops != NULL && ops->chat_add_users != NULL)
1525 ops->chat_add_users(conv, users, flags, aliases); 1525 ops->chat_add_users(conv, users, flags, aliases, new_arrivals);
1526 1526
1527 g_list_free(aliases); 1527 g_list_free(aliases);
1528 } 1528 }
1529 1529
1530 void 1530 void