Changeset 9624fdf for protocols/msn


Ignore:
Timestamp:
2007-04-17T04:49:17Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
33dc261
Parents:
717e3bf
Message:

API cleanup pretty much complete. Fixed pretty much everything except the
buddy/groupchat related functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/sb.c

    r717e3bf r9624fdf  
    607607                        if( sb->who )
    608608                        {
    609                                 serv_got_im( ic, cmd[1], body, 0, 0, blen );
     609                                imcb_buddy_msg( ic, cmd[1], body, 0, 0 );
    610610                        }
    611611                        else if( sb->chat )
     
    666666                        if( sb->who )
    667667                        {
    668                                 serv_got_im( ic, cmd[1], buf, 0, 0, strlen( buf ) );
     668                                imcb_buddy_msg( ic, cmd[1], buf, 0, 0 );
    669669                        }
    670670                        else if( sb->chat )
     
    683683                        if( who )
    684684                        {
    685                                 serv_got_typing( ic, who, 5, 1 );
     685                                imcb_buddy_typing( ic, who, OPT_TYPING );
    686686                                g_free( who );
    687687                        }
Note: See TracChangeset for help on using the changeset viewer.