Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/oscar/oscar.c

    rd06eabf r05bcd20  
    20222022                                       
    20232023                                        if (realname) {
    2024                                                 imcb_buddy_nick_hint(ic, curitem->name, realname);
    20252024                                                imcb_rename_buddy(ic, curitem->name, realname);
    20262025                                                g_free(realname);
     
    22562255        }
    22572256        info_string_append(str, "\n", _("Mobile Phone"), info->mobile);
    2258         info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : info->gender==2 ? _("Male") : _("Unknown"));
     2257        if (info->gender != 0)
     2258                info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : _("Male"));
    22592259        if (info->birthyear || info->birthmonth || info->birthday) {
    22602260                char date[30];
     
    25142514
    25152515        /* Notify the conversation window that we've left the chat */
    2516         imcb_chat_free(cc->cnv);
     2516        imcb_chat_removed(cc->cnv);
    25172517
    25182518        /* Destroy the chat_connection */
Note: See TracChangeset for help on using the changeset viewer.