Ignore:
Timestamp:
2007-04-21T05:18:40Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
c737ba7
Parents:
17fa798
Message:

Consistency; Using OPT_T(YP|HINK)ING for outgoing typing notfication crap
too.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/jabber.c

    r17fa798 rdf1fb67  
    358358                int st;
    359359               
    360                 if( typing == 0 )
     360                if( typing & OPT_TYPING )
     361                        type = "composing";
     362                else if( typing & OPT_THINKING )
     363                        type = "paused";
     364                else
    361365                        type = "active";
    362                 else if( typing == 2 )
    363                         type = "paused";
    364                 else /* if( typing == 1 ) */
    365                         type = "composing";
    366366               
    367367                node = xt_new_node( type, NULL, NULL );
Note: See TracChangeset for help on using the changeset viewer.