Ignore:
Timestamp:
2005-12-13T23:27:58Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
11e090b, 703f0f7
Parents:
6aaa221 (diff), e7f46c5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Improved typing notification support. (from f0rked)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/yahoo/yahoo.c

    r6aaa221 r22bf64e  
    641641{
    642642        struct gaim_connection *gc = byahoo_get_gc_by_id( id );
    643        
    644         serv_got_typing( gc, who, 1 );
     643        if (stat == 1) {
     644                /* User is typing */
     645                serv_got_typing( gc, who, 1, 1 );
     646        }
     647        else {
     648                /* User stopped typing */
     649                serv_got_typing( gc, who, 1, 0 );
     650        }
    645651}
    646652
Note: See TracChangeset for help on using the changeset viewer.