| 499 { |
499 { |
| 500 PurpleStatusType *type; |
500 PurpleStatusType *type; |
| 501 GList *types = NULL; |
501 GList *types = NULL; |
| 502 |
502 |
| 503 type = purple_status_type_new(PURPLE_STATUS_AVAILABLE, |
503 type = purple_status_type_new(PURPLE_STATUS_AVAILABLE, |
| 504 NULL, NULL, FALSE); |
504 NULL, NULL, TRUE); |
| 505 types = g_list_prepend(types, type); |
505 types = g_list_prepend(types, type); |
| 506 |
506 |
| 507 type = purple_status_type_new(PURPLE_STATUS_OFFLINE, |
507 type = purple_status_type_new(PURPLE_STATUS_OFFLINE, |
| 508 NULL, NULL, FALSE); |
508 NULL, NULL, TRUE); |
| 509 types = g_list_prepend(types, type); |
509 types = g_list_prepend(types, type); |
| 510 |
510 |
| 511 return types; |
511 return types; |
| 512 } |
512 } |
| 513 |
513 |