Changeset a08b2db
- Timestamp:
- 2016-10-16T06:51:53Z (8 years ago)
- Branches:
- master
- Children:
- 6e991a9
- Parents:
- 9698fc0
- git-author:
- dequis <dx@…> (16-10-16 06:45:28)
- git-committer:
- dequis <dx@…> (16-10-16 06:51:53)
- Location:
- protocols
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/bee.h
r9698fc0 ra08b2db 190 190 G_MODULE_EXPORT void imcb_chat_invite(struct im_connection *ic, const char *name, const char *who, const char *msg); 191 191 192 G_MODULE_EXPORT void bee_chat_list_finish(struct im_connection *ic); 192 G_GNUC_DEPRECATED G_MODULE_EXPORT void bee_chat_list_finish(struct im_connection *ic); 193 G_MODULE_EXPORT void imcb_chat_list_finish(struct im_connection *ic); 193 194 194 195 #endif /* __BEE_H__ */ -
protocols/bee_chat.c
r9698fc0 ra08b2db 275 275 } 276 276 277 void imcb_chat_list_finish(struct im_connection *ic) 278 { 279 cmd_chat_list_finish(ic); 280 } 281 277 282 void bee_chat_list_finish(struct im_connection *ic) 278 283 { 279 cmd_chat_list_finish(ic); 280 } 284 imcb_log(ic, "Warning: using deprecated bee_chat_list_finish. This will be removed in the stable release."); 285 imcb_chat_list_finish(ic); 286 } -
protocols/purple/purple.c
r9698fc0 ra08b2db 1407 1407 rld->chats = NULL; 1408 1408 1409 bee_chat_list_finish(ic);1409 imcb_chat_list_finish(ic); 1410 1410 1411 1411 if (rld->initialized) {
Note: See TracChangeset
for help on using the changeset viewer.