Mercurial > pidgin
diff src/protocols/irc/irc.c @ 12658:a0fd3ebcd6fa
[gaim-migrate @ 15001]
Move the offline status type after everything else for all protocols.
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Sun, 25 Dec 2005 19:09:25 +0000 |
| parents | fc28451f5d96 |
| children | 91424393b70b |
line wrap: on
line diff
--- a/src/protocols/irc/irc.c Sun Dec 25 18:52:49 2005 +0000 +++ b/src/protocols/irc/irc.c Sun Dec 25 19:09:25 2005 +0000 @@ -163,9 +163,6 @@ GaimStatusType *type; GList *types = NULL; - type = gaim_status_type_new(GAIM_STATUS_OFFLINE, NULL, NULL, TRUE); - types = g_list_append(types, type); - type = gaim_status_type_new(GAIM_STATUS_AVAILABLE, NULL, NULL, TRUE); types = g_list_append(types, type); @@ -175,6 +172,9 @@ NULL); types = g_list_append(types, type); + type = gaim_status_type_new(GAIM_STATUS_OFFLINE, NULL, NULL, TRUE); + types = g_list_append(types, type); + return types; }
