comparison src/protocols/zephyr/zephyr.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 17142948653e
children bf763a1b2454
comparison
equal deleted inserted replaced
11521:d41aabad3b7a 11522:a26eb48d1953
2247 Hidden, will set the user's exposure to OPSTAFF 2247 Hidden, will set the user's exposure to OPSTAFF
2248 2248
2249 Away won't change their exposure but will set an auto away message (for IMs only) 2249 Away won't change their exposure but will set an auto away message (for IMs only)
2250 */ 2250 */
2251 2251
2252 type = gaim_status_type_new(GAIM_STATUS_ONLINE, "online", _("Online"), FALSE); 2252 type = gaim_status_type_new(GAIM_STATUS_AVAILABLE, "online", _("Online"), FALSE);
2253 types = g_list_append(types,type); 2253 types = g_list_append(types,type);
2254 2254
2255 type = gaim_status_type_new(GAIM_STATUS_HIDDEN, "hidden", _("Hidden"), FALSE); 2255 type = gaim_status_type_new(GAIM_STATUS_HIDDEN, "hidden", _("Hidden"), FALSE);
2256 types = g_list_append(types,type); 2256 types = g_list_append(types,type);
2257 2257