comparison src/protocols/oscar/oscar.c @ 10195:fa4973f356a1

[gaim-migrate @ 11310] Minor updates to these 2 protocols. Yahoo! no longer crashes and oscar is one step closer to being able to set an away message committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 16 Nov 2004 03:56:09 +0000
parents 0de7eee583e6
children 760e690a5f30
comparison
equal deleted inserted replaced
10194:55ea700c49d4 10195:fa4973f356a1
6874 type = gaim_status_type_new_full(GAIM_STATUS_AVAILABLE, 6874 type = gaim_status_type_new_full(GAIM_STATUS_AVAILABLE,
6875 OSCAR_STATUS_ID_AVAILABLE, 6875 OSCAR_STATUS_ID_AVAILABLE,
6876 _("Available"), TRUE, TRUE, FALSE); 6876 _("Available"), TRUE, TRUE, FALSE);
6877 status_types = g_list_append(status_types, type); 6877 status_types = g_list_append(status_types, type);
6878 6878
6879 type = gaim_status_type_new_full(GAIM_STATUS_AWAY, 6879 type = gaim_status_type_new_with_attrs(GAIM_STATUS_AWAY,
6880 OSCAR_STATUS_ID_AWAY, 6880 OSCAR_STATUS_ID_AWAY,
6881 _("Away"), TRUE, TRUE, FALSE); 6881 _("Away"), TRUE, TRUE, FALSE,
6882 "message", _("Message"),
6883 gaim_value_new(GAIM_TYPE_STRING), NULL);
6882 status_types = g_list_append(status_types, type); 6884 status_types = g_list_append(status_types, type);
6883 6885
6884 type = gaim_status_type_new_full(GAIM_STATUS_HIDDEN, 6886 type = gaim_status_type_new_full(GAIM_STATUS_HIDDEN,
6885 OSCAR_STATUS_ID_INVISIBLE, 6887 OSCAR_STATUS_ID_INVISIBLE,
6886 _("Invisible"), TRUE, TRUE, TRUE); 6888 _("Invisible"), TRUE, TRUE, TRUE);