comparison src/protocols/jabber/jabber.c @ 10490:a3a540ed2518

[gaim-migrate @ 11780] some random jabber stuff, remove a duplicate #define, and shuffle account loading so we're not emitting signals that haven't been registered yet committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sat, 08 Jan 2005 21:10:17 +0000
parents 659edfcac14e
children 1a97d5e88d12
comparison
equal deleted inserted replaced
10489:8dffdd8861b5 10490:a3a540ed2518
969 type = gaim_status_type_new_with_attrs(GAIM_STATUS_OFFLINE, "offline", 969 type = gaim_status_type_new_with_attrs(GAIM_STATUS_OFFLINE, "offline",
970 _("Offline"), FALSE, TRUE, FALSE, "message", _("Message"), 970 _("Offline"), FALSE, TRUE, FALSE, "message", _("Message"),
971 gaim_value_new(GAIM_TYPE_STRING), NULL); 971 gaim_value_new(GAIM_TYPE_STRING), NULL);
972 types = g_list_append(types, type); 972 types = g_list_append(types, type);
973 973
974 type = gaim_status_type_new_full(GAIM_STATUS_ONLINE, "online", _("Online"), FALSE, TRUE, FALSE); 974 type = gaim_status_type_new_with_attrs(GAIM_STATUS_ONLINE, "online",
975 _("Online"), FALSE, TRUE, FALSE, "priority", _("Priority"),
976 gaim_value_new(GAIM_TYPE_INT), "message", _("Message"),
977 gaim_value_new(GAIM_TYPE_STRING), NULL);
975 types = g_list_append(types, type); 978 types = g_list_append(types, type);
976 979
977 type = gaim_status_type_new_with_attrs(GAIM_STATUS_AVAILABLE, "available", 980 type = gaim_status_type_new_with_attrs(GAIM_STATUS_AVAILABLE, "available",
978 _("Available"), TRUE, TRUE, FALSE, "priority", _("Priority"), 981 _("Available"), TRUE, TRUE, FALSE, "priority", _("Priority"),
979 gaim_value_new(GAIM_TYPE_INT), "message", _("Message"), 982 gaim_value_new(GAIM_TYPE_INT), "message", _("Message"),