comparison src/gtkconv.c @ 5068:b37d7d09ec83

[gaim-migrate @ 5419] logout icons committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Mon, 07 Apr 2003 23:17:27 +0000
parents 24d0da9c56f2
children bfcf72c5a930
comparison
equal deleted inserted replaced
5067:bc40b13c83a0 5068:b37d7d09ec83
2237 for(bnode = gnode->child; bnode; bnode = bnode->next) { 2237 for(bnode = gnode->child; bnode; bnode = bnode->next) {
2238 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode)) 2238 if(!GAIM_BLIST_NODE_IS_BUDDY(bnode))
2239 continue; 2239 continue;
2240 buddy = (struct buddy *)bnode; 2240 buddy = (struct buddy *)bnode;
2241 2241
2242 if (buddy->account == gc->account && buddy->present) 2242 if (buddy->account == gc->account && GAIM_BUDDY_IS_ONLINE(buddy))
2243 tmp = g_list_append(tmp, buddy->name); 2243 tmp = g_list_append(tmp, buddy->name);
2244 } 2244 }
2245 } 2245 }
2246 } 2246 }
2247 2247