diff pidgin/gtkblist.c @ 20980:2ba0963b5bdc

Use the conversation title for unread message tooltips. Fixes #3557.
author Casey Harkins <charkins@pidgin.im>
date Thu, 18 Oct 2007 06:15:56 +0000
parents f9d1e6b138a7
children 89c7be36fd61
line wrap: on
line diff
--- a/pidgin/gtkblist.c	Wed Oct 17 18:13:33 2007 +0000
+++ b/pidgin/gtkblist.c	Thu Oct 18 06:15:56 2007 +0000
@@ -3987,7 +3987,7 @@
 
 			g_string_append_printf(tooltip_text,
 					ngettext("%d unread message from %s\n", "%d unread messages from %s\n", count),
-					count, purple_conversation_get_name(l->data));
+					count, purple_conversation_get_title(l->data));
 			l = l->next;
 		}
 		if(tooltip_text->len > 0) {