Changeset 69b896b for protocols


Ignore:
Timestamp:
2010-07-05T12:01:28Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
9a9b520
Parents:
006a84f
Message:

When addressing people in a chatroom, try to translate the nickname to the
original unstripped version (without ugly underscores, also).

Location:
protocols
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • protocols/bee.h

    r006a84f r69b896b  
    6262        char *handle;
    6363        char *fullname;
     64        char *nick;
    6465        struct bee_group *group;
    6566
  • protocols/bee_user.c

    r006a84f r69b896b  
    6060        g_free( bu->handle );
    6161        g_free( bu->fullname );
     62        g_free( bu->nick );
    6263        g_free( bu->status );
    6364        g_free( bu->status_msg );
  • protocols/nogaim.c

    r006a84f r69b896b  
    427427       
    428428        if( !bu || !nick ) return;
     429       
     430        g_free( bu->nick );
     431        bu->nick = g_strdup( nick );
    429432       
    430433        if( bee->ui->user_nick_hint )
Note: See TracChangeset for help on using the changeset viewer.