Mercurial > pidgin
diff src/protocols/gg/gg.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 | 63c47c764e9b |
line wrap: on
line diff
--- a/src/protocols/gg/gg.c Sun Dec 25 18:52:49 2005 +0000 +++ b/src/protocols/gg/gg.c Sun Dec 25 19:09:25 2005 +0000 @@ -1425,12 +1425,6 @@ GList *types = NULL; type = gaim_status_type_new_with_attrs( - GAIM_STATUS_OFFLINE, NULL, NULL, TRUE, TRUE, FALSE, - "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), - NULL); - types = g_list_append(types, type); - - type = gaim_status_type_new_with_attrs( GAIM_STATUS_AVAILABLE, NULL, NULL, TRUE, TRUE, FALSE, "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), NULL); @@ -1459,6 +1453,12 @@ "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), NULL); types = g_list_append(types, type); + type = gaim_status_type_new_with_attrs( + GAIM_STATUS_OFFLINE, NULL, NULL, TRUE, TRUE, FALSE, + "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), + NULL); + types = g_list_append(types, type); + return types; } /* }}} */
