changeset 10499:d0c336ad0b27

[gaim-migrate @ 11791] Show the correct field for "Contact Alias" in buddy list tooltips. I broke this when I changed the tooltip to use GStrings. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 10 Jan 2005 05:29:48 +0000
parents aba3000cc50a
children 6ec5da82ef41
files src/gtkblist.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkblist.c	Sun Jan 09 20:06:25 2005 +0000
+++ b/src/gtkblist.c	Mon Jan 10 05:29:48 2005 +0000
@@ -2686,9 +2686,9 @@
 
 		/* Contact Alias */
 		if (GAIM_BLIST_NODE_IS_CONTACT(node) &&
-			(gaim_contact_get_alias(c) != NULL))
+			(c->alias != NULL))
 		{
-			tmp = g_markup_escape_text(gaim_contact_get_alias(c), -1);
+			tmp = g_markup_escape_text(c->alias, -1);
 			g_string_append_printf(str, _("\n<b>Contact Alias:</b> %s"), tmp);
 			g_free(tmp);
 		}