Mercurial > pidgin
changeset 28921:2930170ca3c0
We allow aliasing chats. So don't show an error message when we try to.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Thu, 28 Jan 2010 21:44:16 +0000 |
parents | 8c8871afd063 |
children | 45fce067c690 |
files | pidgin/gtkblist.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/gtkblist.c Thu Jan 28 20:39:24 2010 +0000 +++ b/pidgin/gtkblist.c Thu Jan 28 21:44:16 2010 +0000 @@ -470,6 +470,9 @@ case PURPLE_BLIST_GROUP_NODE: text = purple_group_get_name(PURPLE_GROUP(node)); break; + case PURPLE_BLIST_CHAT_NODE: + text = purple_chat_get_name(PURPLE_CHAT(node)); + break; default: g_return_if_reached(); }