From: <rl...@us...> - 2006-06-11 00:11:13
|
Revision: 16251 Author: rlaager Date: 2006-06-10 17:11:00 -0700 (Sat, 10 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16251&view=rev Log Message: ----------- Having the idle time in the buddy list mean minutes without a colon and hours:minutes with confuses me. It's quite possible I'm just dumb. Let me know if you object. I know I talked about this a couple months ago and nobody objected strongly, but I apparently never committed it. Modified Paths: -------------- trunk/src/gtkblist.c Modified: trunk/src/gtkblist.c =================================================================== --- trunk/src/gtkblist.c 2006-06-11 00:06:02 UTC (rev 16250) +++ trunk/src/gtkblist.c 2006-06-11 00:11:00 UTC (rev 16251) @@ -4162,10 +4162,7 @@ ihrs = (t - idle_secs) / 3600; imin = ((t - idle_secs) / 60) % 60; - if (ihrs > 0) - idle = g_strdup_printf("%d:%02d", ihrs, imin); - else - idle = g_strdup_printf("%d", imin); + idle = g_strdup_printf("%d:%02d", ihrs, imin); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |