comparison src/gtkconv.c @ 10572:ed2b8b432525

[gaim-migrate @ 11963] sf patch #1115944, from Richard Laager Sort Buddies in Chat Invite List committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 04 Feb 2005 05:54:31 +0000
parents c354b70d8502
children 0f7452b1f777
comparison
equal deleted inserted replaced
10571:ce89d4e568d3 10572:ed2b8b432525
3244 3244
3245 buddy = (GaimBuddy *)bnode; 3245 buddy = (GaimBuddy *)bnode;
3246 3246
3247 if (buddy->account == gc->account && 3247 if (buddy->account == gc->account &&
3248 GAIM_BUDDY_IS_ONLINE(buddy)) 3248 GAIM_BUDDY_IS_ONLINE(buddy))
3249 tmp = g_list_append(tmp, buddy->name); 3249 tmp = g_list_insert_sorted(tmp, buddy->name,
3250 (GCompareFunc)g_utf8_collate);
3250 } 3251 }
3251 } 3252 }
3252 } 3253 }
3253 } 3254 }
3254 3255