Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/oscar/oscar.c

    r05bcd20 rd06eabf  
    20222022                                       
    20232023                                        if (realname) {
     2024                                                imcb_buddy_nick_hint(ic, curitem->name, realname);
    20242025                                                imcb_rename_buddy(ic, curitem->name, realname);
    20252026                                                g_free(realname);
     
    22552256        }
    22562257        info_string_append(str, "\n", _("Mobile Phone"), info->mobile);
    2257         if (info->gender != 0)
    2258                 info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : _("Male"));
     2258        info_string_append(str, "\n", _("Gender"), info->gender==1 ? _("Female") : info->gender==2 ? _("Male") : _("Unknown"));
    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_removed(cc->cnv);
     2516        imcb_chat_free(cc->cnv);
    25172517
    25182518        /* Destroy the chat_connection */
Note: See TracChangeset for help on using the changeset viewer.