diff plugins/ticker/ticker.c @ 4491:3196d9044a45

[gaim-migrate @ 4766] aim_user is dead. long live gaim_account. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 31 Jan 2003 13:03:47 +0000
parents 62c1e5e656d0
children 2427d847e39c
line wrap: on
line diff
--- a/plugins/ticker/ticker.c	Fri Jan 31 06:51:49 2003 +0000
+++ b/plugins/ticker/ticker.c	Fri Jan 31 13:03:47 2003 +0000
@@ -343,8 +343,8 @@
 			b = (struct buddy *)buds->data;
 			if( b->present ) {
 				xpm = NULL;
-				if (b->user->gc->prpl->list_icon)
-					xpm = b->user->gc->prpl->list_icon(b->uc);
+				if (b->account->gc->prpl->list_icon)
+					xpm = b->account->gc->prpl->list_icon(b->uc);
 				if (xpm == NULL)
 					xpm = (char **)no_icon_xpm;
 				pm = gdk_pixmap_create_from_xpm_d(blist->window, &bm, NULL, xpm);
@@ -358,7 +358,7 @@
 }
 
 void signon_cb(struct gaim_connection *gc, char *who) {
-	struct buddy *b  = find_buddy(gc->user, who);
+	struct buddy *b  = find_buddy(gc->account, who);
 	char **xpm = NULL;
 	
 	GdkPixmap *pm;
@@ -389,7 +389,7 @@
 }
 
 void away_cb(struct gaim_connection *gc, char *who) {
-	struct buddy *b  = find_buddy(gc->user, who);
+	struct buddy *b  = find_buddy(gc->account, who);
 	char **xpm = NULL;
 	
 	GdkPixmap *pm;