comparison src/protocols/napster/napster.c @ 11522:a26eb48d1953

[gaim-migrate @ 13770] I removed the GAIM_STATUS_ONLINE primitive. Use GAIM_STATUS_AVAILABLE instead. If the primitive is not GAIM_STATUS_OFFLINE, then the user is online and the primitive could be GAIM_STATUS_AVAILABLE, GAIM_STATUS_AWAY, etc. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 12 Sep 2005 06:04:27 +0000
parents 90be432e8385
children bf763a1b2454
comparison
equal deleted inserted replaced
11521:d41aabad3b7a 11522:a26eb48d1953
572 type = gaim_status_type_new_full(GAIM_STATUS_OFFLINE, 572 type = gaim_status_type_new_full(GAIM_STATUS_OFFLINE,
573 "offline", 573 "offline",
574 _("Offline"), TRUE, TRUE, FALSE); 574 _("Offline"), TRUE, TRUE, FALSE);
575 types = g_list_append(types, type); 575 types = g_list_append(types, type);
576 576
577 type = gaim_status_type_new_full(GAIM_STATUS_ONLINE, 577 type = gaim_status_type_new_full(GAIM_STATUS_AVAILABLE,
578 "online", 578 "online",
579 _("Online"), TRUE, TRUE, FALSE); 579 _("Online"), TRUE, TRUE, FALSE);
580 types = g_list_append(types, type); 580 types = g_list_append(types, type);
581 581
582 return types; 582 return types;