Ignore:
Timestamp:
2016-10-16T06:51:53Z (8 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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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}
Note: See TracChangeset for help on using the changeset viewer.