diff src/protocols/zephyr/zephyr.c @ 12658:a0fd3ebcd6fa

[gaim-migrate @ 15001] Move the offline status type after everything else for all protocols. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 25 Dec 2005 19:09:25 +0000
parents fc28451f5d96
children 263c2db78f77
line wrap: on
line diff
--- a/src/protocols/zephyr/zephyr.c	Sun Dec 25 18:52:49 2005 +0000
+++ b/src/protocols/zephyr/zephyr.c	Sun Dec 25 19:09:25 2005 +0000
@@ -2243,17 +2243,17 @@
 	   REALM-ANNOUNCED REALM-VISIBLE+ plus your logins/logouts are announced to <login,username,*>
 	   NET-VISIBLE REALM-ANNOUNCED, plus visible to people in foreign realm
 	   NET-ANNOUNCED NET-VISIBLE, plus logins/logouts are announced	 to <login,username,*>
-	   
+
 	   Online will set the user to the exposure they have in their options (defaulting to REALM-VISIBLE),
 	   Hidden, will set the user's exposure to OPSTAFF
 
 	   Away won't change their exposure but will set an auto away message (for IMs only)
 	*/
-	
-	type = gaim_status_type_new(GAIM_STATUS_AVAILABLE, NULL, NULL, FALSE);
+
+	type = gaim_status_type_new(GAIM_STATUS_AVAILABLE, NULL, NULL, TRUE);
 	types = g_list_append(types,type);
 
-	type = gaim_status_type_new(GAIM_STATUS_INVISIBLE, NULL, NULL, FALSE);
+	type = gaim_status_type_new(GAIM_STATUS_INVISIBLE, NULL, NULL, TRUE);
 	types = g_list_append(types,type);
 
 	type = gaim_status_type_new_with_attrs(
@@ -2262,6 +2262,9 @@
 					       NULL);
 	types = g_list_append(types, type);
 
+	type = gaim_status_type_new(GAIM_STATUS_OFFLINE, NULL, NULL, TRUE);
+	types = g_list_append(types,type);
+
 	return types;
 }