Mercurial > pidgin
changeset 12313:f9629b994b27
[gaim-migrate @ 14617]
this was annoying the crap out of me. I can't think of any reason why not to honor a contact alias as the conversation title, so now we do
committer: Tailor Script <tailor@pidgin.im>
author | Christopher O'Brien <siege@pidgin.im> |
---|---|
date | Sun, 04 Dec 2005 17:24:59 +0000 |
parents | 1c8ea8f3b84e |
children | e1fc3eaf73b9 |
files | src/conversation.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/conversation.c Sun Dec 04 05:04:39 2005 +0000 +++ b/src/conversation.c Sun Dec 04 17:24:59 2005 +0000 @@ -650,7 +650,7 @@ if(gaim_conversation_get_type(conv) == GAIM_CONV_TYPE_IM) { if(account && ((b = gaim_find_buddy(account, name)) != NULL)) - text = gaim_buddy_get_alias(b); + text = gaim_buddy_get_contact_alias(b); } else if(gaim_conversation_get_type(conv) == GAIM_CONV_TYPE_CHAT) { if(account && ((chat = gaim_blist_find_chat(account, name)) != NULL)) text = chat->alias;