# HG changeset patch # User Sean Egan # Date 1158368173 0 # Node ID 78d0f3c4c9ff636232d2afe4c5af1ae0e3603abe # Parent 3ff55ec8203ab1a19c8de84a4d60d0f8dc7e973e [gaim-migrate @ 17285] Thinking about it, group counts are kinda stupid. I think I've been their major defender in the various prefslashes, so I don't think anyone objects to me removing them. committer: Tailor Script diff -r 3ff55ec8203a -r 78d0f3c4c9ff gtk/gtkblist.c --- a/gtk/gtkblist.c Fri Sep 15 22:05:34 2006 +0000 +++ b/gtk/gtkblist.c Sat Sep 16 00:56:13 2006 +0000 @@ -4401,14 +4401,11 @@ esc = g_markup_escape_text(group->name, -1); if (selected) - mark = g_strdup_printf("%s (%d/%d)", - esc, gaim_blist_get_group_online_count(group), - gaim_blist_get_group_size(group, FALSE)); + mark = g_strdup_printf("%s",esc); else - mark = g_strdup_printf("%s (%d/%d)", + mark = g_strdup_printf("%s", textcolor.red>>8, textcolor.green>>8, textcolor.blue>>8, - esc, gaim_blist_get_group_online_count(group), - gaim_blist_get_group_size(group, FALSE)); + esc); g_free(esc);