Mercurial > pidgin.yaz
diff libpurple/protocols/qq/qq.c @ 25050:b5c82724598c
For some reason, all these statuses were set to saveable=FALSE. With the
recent change to not save those, this broke stuff like re-use last status
on startup with certain statuses (like invisible on MSN).
Fixes #8316.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Tue, 03 Feb 2009 05:39:47 +0000 |
parents | b74fa0d31c74 |
children | cddd7961901f af42303654a5 |
line wrap: on
line diff
--- a/libpurple/protocols/qq/qq.c Tue Feb 03 02:43:45 2009 +0000 +++ b/libpurple/protocols/qq/qq.c Tue Feb 03 05:39:47 2009 +0000 @@ -406,15 +406,15 @@ GList *types = NULL; status = purple_status_type_new_full(PURPLE_STATUS_AVAILABLE, - "available", _("Available"), FALSE, TRUE, FALSE); + "available", _("Available"), TRUE, TRUE, FALSE); types = g_list_append(types, status); status = purple_status_type_new_full(PURPLE_STATUS_AWAY, - "away", _("Away"), FALSE, TRUE, FALSE); + "away", _("Away"), TRUE, TRUE, FALSE); types = g_list_append(types, status); status = purple_status_type_new_full(PURPLE_STATUS_INVISIBLE, - "invisible", _("Invisible"), FALSE, TRUE, FALSE); + "invisible", _("Invisible"), TRUE, TRUE, FALSE); types = g_list_append(types, status); status = purple_status_type_new_full(PURPLE_STATUS_UNAVAILABLE, @@ -422,7 +422,7 @@ types = g_list_append(types, status); status = purple_status_type_new_full(PURPLE_STATUS_OFFLINE, - "offline", _("Offline"), FALSE, TRUE, FALSE); + "offline", _("Offline"), TRUE, TRUE, FALSE); types = g_list_append(types, status); status = purple_status_type_new_full(PURPLE_STATUS_MOBILE,