Ignore:
Timestamp:
2007-11-19T23:14:39Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
256899f
Parents:
50e1776
Message:

Added Jabber groupchat topic support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/jabber.c

    r50e1776 ref5c185  
    385385}
    386386
     387static void jabber_chat_topic_( struct groupchat *c, char *topic )
     388{
     389        if( c && topic )
     390                jabber_chat_topic( c, topic );
     391}
     392
    387393static void jabber_chat_leave_( struct groupchat *c )
    388394{
     
    461467        ret->remove_buddy = jabber_remove_buddy;
    462468        ret->chat_msg = jabber_chat_msg_;
     469        ret->chat_topic = jabber_chat_topic_;
    463470//      ret->chat_invite = jabber_chat_invite;
    464471        ret->chat_leave = jabber_chat_leave_;
Note: See TracChangeset for help on using the changeset viewer.