| 3330 GList *types = NULL; |
3330 GList *types = NULL; |
| 3331 PurpleStatusType *type; |
3331 PurpleStatusType *type; |
| 3332 |
3332 |
| 3333 type = purple_status_type_new_with_attrs(PURPLE_STATUS_AVAILABLE, |
3333 type = purple_status_type_new_with_attrs(PURPLE_STATUS_AVAILABLE, |
| 3334 MW_STATE_ACTIVE, NULL, TRUE, TRUE, FALSE, |
3334 MW_STATE_ACTIVE, NULL, TRUE, TRUE, FALSE, |
| 3335 MW_STATE_MESSAGE, _("Message"), purple_g_value_new(G_TYPE_STRING), |
3335 MW_STATE_MESSAGE, _("Message"), purple_value_new(G_TYPE_STRING), |
| 3336 NULL); |
3336 NULL); |
| 3337 types = g_list_append(types, type); |
3337 types = g_list_append(types, type); |
| 3338 |
3338 |
| 3339 type = purple_status_type_new_with_attrs(PURPLE_STATUS_AWAY, |
3339 type = purple_status_type_new_with_attrs(PURPLE_STATUS_AWAY, |
| 3340 MW_STATE_AWAY, NULL, TRUE, TRUE, FALSE, |
3340 MW_STATE_AWAY, NULL, TRUE, TRUE, FALSE, |
| 3341 MW_STATE_MESSAGE, _("Message"), purple_g_value_new(G_TYPE_STRING), |
3341 MW_STATE_MESSAGE, _("Message"), purple_value_new(G_TYPE_STRING), |
| 3342 NULL); |
3342 NULL); |
| 3343 types = g_list_append(types, type); |
3343 types = g_list_append(types, type); |
| 3344 |
3344 |
| 3345 type = purple_status_type_new_with_attrs(PURPLE_STATUS_UNAVAILABLE, |
3345 type = purple_status_type_new_with_attrs(PURPLE_STATUS_UNAVAILABLE, |
| 3346 MW_STATE_BUSY, _("Do Not Disturb"), TRUE, TRUE, FALSE, |
3346 MW_STATE_BUSY, _("Do Not Disturb"), TRUE, TRUE, FALSE, |
| 3347 MW_STATE_MESSAGE, _("Message"), purple_g_value_new(G_TYPE_STRING), |
3347 MW_STATE_MESSAGE, _("Message"), purple_value_new(G_TYPE_STRING), |
| 3348 NULL); |
3348 NULL); |
| 3349 types = g_list_append(types, type); |
3349 types = g_list_append(types, type); |
| 3350 |
3350 |
| 3351 type = purple_status_type_new_full(PURPLE_STATUS_OFFLINE, |
3351 type = purple_status_type_new_full(PURPLE_STATUS_OFFLINE, |
| 3352 MW_STATE_OFFLINE, NULL, TRUE, TRUE, FALSE); |
3352 MW_STATE_OFFLINE, NULL, TRUE, TRUE, FALSE); |