comparison src/protocols/msn/msn.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 d8e8feac6cce
comparison
equal deleted inserted replaced
12657:7b816173e2c6 12658:a0fd3ebcd6fa
571 msn_status_types(GaimAccount *account) 571 msn_status_types(GaimAccount *account)
572 { 572 {
573 GaimStatusType *status; 573 GaimStatusType *status;
574 GList *types = NULL; 574 GList *types = NULL;
575 575
576 status = gaim_status_type_new_full(GAIM_STATUS_OFFLINE,
577 NULL, NULL, FALSE, TRUE, FALSE);
578 types = g_list_append(types, status);
579
580 status = gaim_status_type_new_full(GAIM_STATUS_AVAILABLE, 576 status = gaim_status_type_new_full(GAIM_STATUS_AVAILABLE,
581 NULL, NULL, FALSE, TRUE, FALSE); 577 NULL, NULL, FALSE, TRUE, FALSE);
582 types = g_list_append(types, status); 578 types = g_list_append(types, status);
583 579
584 status = gaim_status_type_new_full(GAIM_STATUS_AWAY, 580 status = gaim_status_type_new_full(GAIM_STATUS_AWAY,
600 status = gaim_status_type_new_full(GAIM_STATUS_AWAY, 596 status = gaim_status_type_new_full(GAIM_STATUS_AWAY,
601 "lunch", _("Out to Lunch"), FALSE, TRUE, FALSE); 597 "lunch", _("Out to Lunch"), FALSE, TRUE, FALSE);
602 types = g_list_append(types, status); 598 types = g_list_append(types, status);
603 599
604 status = gaim_status_type_new_full(GAIM_STATUS_INVISIBLE, 600 status = gaim_status_type_new_full(GAIM_STATUS_INVISIBLE,
601 NULL, NULL, FALSE, TRUE, FALSE);
602 types = g_list_append(types, status);
603
604 status = gaim_status_type_new_full(GAIM_STATUS_OFFLINE,
605 NULL, NULL, FALSE, TRUE, FALSE); 605 NULL, NULL, FALSE, TRUE, FALSE);
606 types = g_list_append(types, status); 606 types = g_list_append(types, status);
607 607
608 return types; 608 return types;
609 } 609 }