Changeset a08b2db


Ignore:
Timestamp:
2016-10-16T06:51:53Z (7 years ago)
Author:
dequis <dx@…>
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)
Message:

Rename bee_chat_list_finish() to imcb_chat_list_finish()

bee_chat_list_finish is still available as a deprecated function but it
will be removed before the next stable release

It has never been part of any release, just keeping it for a while for
the sake of being polite to the users of the discord plugin who may be
using the experimental chat list branch.

Location:
protocols
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • protocols/bee.h

    r9698fc0 ra08b2db  
    190190G_MODULE_EXPORT void imcb_chat_invite(struct im_connection *ic, const char *name, const char *who, const char *msg);
    191191
    192 G_MODULE_EXPORT void bee_chat_list_finish(struct im_connection *ic);
     192G_GNUC_DEPRECATED G_MODULE_EXPORT void bee_chat_list_finish(struct im_connection *ic);
     193G_MODULE_EXPORT void imcb_chat_list_finish(struct im_connection *ic);
    193194
    194195#endif /* __BEE_H__ */
  • protocols/bee_chat.c

    r9698fc0 ra08b2db  
    275275}
    276276
     277void imcb_chat_list_finish(struct im_connection *ic)
     278{
     279        cmd_chat_list_finish(ic);
     280}
     281
    277282void bee_chat_list_finish(struct im_connection *ic)
    278283{
    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  
    14071407        rld->chats = NULL;
    14081408
    1409         bee_chat_list_finish(ic);
     1409        imcb_chat_list_finish(ic);
    14101410
    14111411        if (rld->initialized) {
Note: See TracChangeset for help on using the changeset viewer.