# HG changeset patch # User Richard Laager # Date 1149984660 0 # Node ID f41a515307a978c42b07d041610b8f13470ec86d # Parent ec7848583492efba6d6f7838e3addd0045fe91d0 [gaim-migrate @ 16251] 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. committer: Tailor Script diff -r ec7848583492 -r f41a515307a9 src/gtkblist.c --- a/src/gtkblist.c Sun Jun 11 00:06:02 2006 +0000 +++ b/src/gtkblist.c Sun Jun 11 00:11:00 2006 +0000 @@ -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); } }