[gaim-migrate @ 11791]

Mon, 10 Jan 2005 05:29:48 +0000

author
Mark Doliner <markdoliner@pidgin.im>
date
Mon, 10 Jan 2005 05:29:48 +0000
changeset 10499
265bcc62a1cc
parent 10498
aff389ee45f3
child 10500
b1d1b55682d7

[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.

src/gtkblist.c file | annotate | diff | comparison | revisions
--- 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);
 		}

mercurial