From: <sea...@us...> - 2006-09-16 00:56:15
|
Revision: 17285 http://svn.sourceforge.net/gaim/?rev=17285&view=rev Author: seanegan Date: 2006-09-15 17:56:13 -0700 (Fri, 15 Sep 2006) Log Message: ----------- 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. Modified Paths: -------------- trunk/gtk/gtkblist.c Modified: trunk/gtk/gtkblist.c =================================================================== --- trunk/gtk/gtkblist.c 2006-09-15 22:05:34 UTC (rev 17284) +++ trunk/gtk/gtkblist.c 2006-09-16 00:56:13 UTC (rev 17285) @@ -4401,14 +4401,11 @@ esc = g_markup_escape_text(group->name, -1); if (selected) - mark = g_strdup_printf("<span weight='bold'>%s</span> (%d/%d)", - esc, gaim_blist_get_group_online_count(group), - gaim_blist_get_group_size(group, FALSE)); + mark = g_strdup_printf("<span weight='bold'>%s</span>",esc); else - mark = g_strdup_printf("<span color='#%02x%02x%02x'><span weight='bold'>%s</span> (%d/%d)</span>", + mark = g_strdup_printf("<span color='#%02x%02x%02x' weight='bold'>%s</span>", 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); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |