Mercurial > pidgin.yaz
changeset 12717:63c47c764e9b
[gaim-migrate @ 15061]
In SF Patch #1396955, Thomas Huriaux pointed out that we have some confusion with the busy status in GG. I believe I broke this. It's fixed now. I also noticed that I hadn't made this Busy status a substatus of UNAVAILABLE, so that's done now too.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Wed, 04 Jan 2006 18:44:56 +0000 |
parents | c08fcbcc6a3e |
children | b5fb60cb3bad |
files | src/protocols/gg/gg.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/gg/gg.c Wed Jan 04 17:36:42 2006 +0000 +++ b/src/protocols/gg/gg.c Wed Jan 04 18:44:56 2006 +0000 @@ -896,7 +896,7 @@ break; case GG_STATUS_BUSY: case GG_STATUS_BUSY_DESCR: - st = "away"; + st = "busy"; break; case GG_STATUS_BLOCKED: /* user is blocking us.... */ @@ -1441,7 +1441,7 @@ types = g_list_append(types, type); type = gaim_status_type_new_with_attrs( - GAIM_STATUS_AWAY, "busy", _("Busy"), TRUE, TRUE, FALSE, + GAIM_STATUS_UNAVAILABLE, "busy", _("Busy"), TRUE, TRUE, FALSE, "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), NULL); types = g_list_append(types, type);