Mercurial > pidgin
diff src/protocols/yahoo/yahoo_profile.c @ 9984:e4a032202d49
[gaim-migrate @ 10895]
Ok it compiles. Mind you, I didn't test it yet.
Setting your status should work, but I #if 0'd out the code for
setting your idle time. I also #if 0'd out an idle related thing in
yahoo_profile.c that I'm hoping wing will fix for me.
committer: Tailor Script <tailor@pidgin.im>
| author | Tim Ringenbach <marv@pidgin.im> |
|---|---|
| date | Wed, 08 Sep 2004 06:07:01 +0000 |
| parents | 62eb9fe24692 |
| children | 255225f7639e |
line wrap: on
line diff
--- a/src/protocols/yahoo/yahoo_profile.c Wed Sep 08 05:31:09 2004 +0000 +++ b/src/protocols/yahoo/yahoo_profile.c Wed Sep 08 06:07:01 2004 +0000 @@ -659,12 +659,14 @@ g_string_append_printf(s, _("<b>Alias:</b> %s<br>"), aliastext); g_free(aliastext); } + #if 0 if (b->idle > 0) { char *idletime = gaim_str_seconds_to_string(time(NULL) - b->idle); g_string_append_printf(s, _("<b>%s:</b> %s<br>"), _("Idle"), idletime); g_free(idletime); } + #endif if (statustext) { g_string_append_printf(s, "%s<br>", statustext); g_free(statustext);
