Ignore:
Timestamp:
2010-08-21T22:42:01Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
fd424c8
Parents:
327af51 (diff), c00dd71 (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:

Merge mainline.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/bee_user.c

    r327af51 r4022b68  
    195195                bu->status = NULL;
    196196       
     197        if( bu->status == NULL && ( flags & OPT_MOBILE ) &&
     198            set_getbool( &bee->set, "mobile_is_away" ) )
     199        {
     200                bu->flags |= BEE_USER_AWAY;
     201                bu->status = g_strdup( "Mobile" );
     202        }
     203       
    197204        if( bee->ui->user_status )
    198205                bee->ui->user_status( bee, bu, old );
     
    268275}
    269276
    270 void imcb_buddy_typing( struct im_connection *ic, char *handle, uint32_t flags )
     277void imcb_buddy_typing( struct im_connection *ic, const char *handle, uint32_t flags )
    271278{
    272279        bee_user_t *bu;
Note: See TracChangeset for help on using the changeset viewer.