# HG changeset patch # User Mark Doliner # Date 1135536769 0 # Node ID 7b816173e2c669f30ef8d572d85ed6363a8bd7ad # Parent 60cce1861e594d56ec48bda5f16402bd5957552f [gaim-migrate @ 15000] List "online" before "offline" in the SIP/SIMPLE plugin committer: Tailor Script diff -r 60cce1861e59 -r 7b816173e2c6 src/protocols/simple/simple.c --- a/src/protocols/simple/simple.c Sun Dec 25 18:16:29 2005 +0000 +++ b/src/protocols/simple/simple.c Sun Dec 25 18:52:49 2005 +0000 @@ -246,16 +246,16 @@ GaimStatusType *type; GList *types = NULL; - type = gaim_status_type_new_full( - GAIM_STATUS_OFFLINE, NULL, NULL, TRUE, TRUE, FALSE); - 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); types = g_list_append(types, type); + type = gaim_status_type_new_full( + GAIM_STATUS_OFFLINE, NULL, NULL, TRUE, TRUE, FALSE); + types = g_list_append(types, type); + return types; }