comparison libpurple/conversation.h @ 32512:968a51c4fa9d

purple_conv_chat_set_users() has been deprecated since 2.9.0, and can be removed for 3.0.0.
author andrew.victor@mxit.com
date Mon, 05 Sep 2011 20:16:47 +0000
parents e5e81ce9c564
children 63e7d226b760
comparison
equal deleted inserted replaced
32511:38ce2e217fcb 32512:968a51c4fa9d
1078 * @return The parent conversation. 1078 * @return The parent conversation.
1079 */ 1079 */
1080 PurpleConversation *purple_conv_chat_get_conversation(const PurpleConvChat *chat); 1080 PurpleConversation *purple_conv_chat_get_conversation(const PurpleConvChat *chat);
1081 1081
1082 /** 1082 /**
1083 * Sets the list of users in the chat room.
1084 *
1085 * @note Calling this function will not update the display of the users.
1086 * Please use purple_conv_chat_add_user(), purple_conv_chat_add_users(),
1087 * purple_conv_chat_remove_user(), and purple_conv_chat_remove_users() instead.
1088 *
1089 * @param chat The chat.
1090 * @param users The list of users.
1091 *
1092 * @return The list passed.
1093 *
1094 * @deprecated This function will be removed in 3.0.0. You shouldn't be using it anyway.
1095 */
1096 GList *purple_conv_chat_set_users(PurpleConvChat *chat, GList *users);
1097
1098 /**
1099 * Returns a list of users in the chat room. The members of the list 1083 * Returns a list of users in the chat room. The members of the list
1100 * are PurpleConvChatBuddy objects. 1084 * are PurpleConvChatBuddy objects.
1101 * 1085 *
1102 * @param chat The chat. 1086 * @param chat The chat.
1103 * 1087 *