# HG changeset patch # User Stu Tomlinson # Date 1180202947 0 # Node ID 8e722e947e0064d0f13cfc39be61e4430dfee89e # Parent ad481ea028be2ba2dd293706ba11147fa635eadb Patch from Pse to use the same status primitives as im.pidgin.pidgin for "Busy" and "On the Phone". Fixes #1270 diff -r ad481ea028be -r 8e722e947e00 libpurple/protocols/msn/msn.c --- a/libpurple/protocols/msn/msn.c Sat May 26 17:14:25 2007 +0000 +++ b/libpurple/protocols/msn/msn.c Sat May 26 18:09:07 2007 +0000 @@ -640,13 +640,13 @@ types = g_list_append(types, status); status = purple_status_type_new_with_attrs( - PURPLE_STATUS_AWAY, "busy", _("Busy"), TRUE, TRUE, FALSE, + PURPLE_STATUS_UNAVAILABLE, "busy", _("Busy"), TRUE, TRUE, FALSE, "message", _("Message"), purple_value_new(PURPLE_TYPE_STRING), "currentmedia", _("Current media"), purple_value_new(PURPLE_TYPE_STRING), NULL); types = g_list_append(types, status); status = purple_status_type_new_with_attrs( - PURPLE_STATUS_AWAY, "phone", _("On the Phone"), TRUE, TRUE, FALSE, + PURPLE_STATUS_UNAVAILABLE, "phone", _("On the Phone"), TRUE, TRUE, FALSE, "message", _("Message"), purple_value_new(PURPLE_TYPE_STRING), "currentmedia", _("Current media"), purple_value_new(PURPLE_TYPE_STRING), NULL);