comparison src/ticker.c @ 2662:b0c5770156e1

[gaim-migrate @ 2675] everything changed! not really. actually to be quite honest nothing changed. it's really bad that all of these files use prpl references. most of them shouldn't. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 02 Nov 2001 01:41:37 +0000
parents ab55ac6234b8
children 30ca1b76ad0c
comparison
equal deleted inserted replaced
2661:5e9a033f04fa 2662:b0c5770156e1
291 for( buds = g->members; buds; buds = buds->next ) { 291 for( buds = g->members; buds; buds = buds->next ) {
292 b = (struct buddy *)buds->data; 292 b = (struct buddy *)buds->data;
293 if( b->present ) { 293 if( b->present ) {
294 xpm = NULL; 294 xpm = NULL;
295 if (gc->prpl->list_icon) 295 if (gc->prpl->list_icon)
296 xpm = (*gc->prpl->list_icon)(b->uc); 296 xpm = gc->prpl->list_icon(b->uc);
297 if (xpm == NULL) 297 if (xpm == NULL)
298 xpm = (char **)no_icon_xpm; 298 xpm = (char **)no_icon_xpm;
299 pm = gdk_pixmap_create_from_xpm_d(blist->window, &bm, NULL, xpm); 299 pm = gdk_pixmap_create_from_xpm_d(blist->window, &bm, NULL, xpm);
300 BuddyTickerAddUser( b->name, pm, bm ); 300 BuddyTickerAddUser( b->name, pm, bm );
301 } 301 }