# HG changeset patch # User Mark Doliner # Date 1043570554 0 # Node ID 3299863ab0604e6836303eaa19bf2434a6d9f8ea # Parent be8f9ca74ddfd8b6c356029a4798ea2ae67576b7 [gaim-migrate @ 4701] ...It's gonna take a lot to drag me away from you There's nothing that a hundred men or more could ever do I bless the rains down in Africa, I passed some rains down in Africa... I made it so "Get Info" shows xxx days, xx hours, xx minutes, xx seconds instead of oodles of minutes. I also removed that entry from the todo... hence the lyrics from Toto... I don't think I'm cheesey enough. committer: Tailor Script diff -r be8f9ca74ddf -r 3299863ab060 .todo --- a/.todo Sun Jan 26 07:17:07 2003 +0000 +++ b/.todo Sun Jan 26 08:42:34 2003 +0000 @@ -1,4 +1,4 @@ - + Gaim TODO List @@ -340,9 +340,6 @@ <note priority="high" time="1036040899"> option to ignore chat room invitations. (this is something you could vary conceivably want to be done per account, so perhaps a protocol action would be best) </note> - <note priority="low" time="1036040945"> - idle time display in get_info displays in minutes instead of computing hours and days as the blist does - </note> <note priority="low" time="1036040980"> direct im <note priority="veryhigh" time="1036040919"> @@ -394,12 +391,6 @@ <note priority="medium" time="1036041260"> search for users </note> - <note priority="medium" time="1037575155"> - ssi (server side buddy lists and other server stored info) - <note priority="medium" time="1041995715"> - extended info stuff? - </note> - </note> <note priority="low" time="1036041152"> set the Nickname to be the self-alias </note> diff -r be8f9ca74ddf -r 3299863ab060 src/protocols/oscar/oscar.c --- a/src/protocols/oscar/oscar.c Sun Jan 26 07:17:07 2003 +0000 +++ b/src/protocols/oscar/oscar.c Sun Jan 26 08:42:34 2003 +0000 @@ -2793,8 +2793,9 @@ } if (info->present & AIM_USERINFO_PRESENT_IDLE) { - idle = g_strdup_printf("Idle : <B>%hu minutes</B>", - info->idletime); + gchar *itime = sec_to_text(info->idletime*60); + idle = g_strdup_printf("Idle : <B>%s</B>", itime); + g_free(itime); } else idle = g_strdup("Idle: <B>Active</B>");