diff src/protocols/novell/novell.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 3dedbe04a684
line wrap: on
line diff
--- a/src/protocols/novell/novell.c	Sun Dec 25 18:52:49 2005 +0000
+++ b/src/protocols/novell/novell.c	Sun Dec 25 19:09:25 2005 +0000
@@ -2972,9 +2972,6 @@
 
 	g_return_val_if_fail(account != NULL, NULL);
 
-	type = gaim_status_type_new_full(GAIM_STATUS_OFFLINE, NULL, NULL, FALSE, TRUE, FALSE);
-	status_types = g_list_append(status_types, type);
-
 	type = gaim_status_type_new_with_attrs(GAIM_STATUS_AVAILABLE, NOVELL_STATUS_TYPE_AVAILABLE,
 										   NULL, TRUE, TRUE, FALSE,
 										   "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING),
@@ -2997,6 +2994,9 @@
 										   NULL, TRUE, TRUE, FALSE);
 	status_types = g_list_append(status_types, type);
 
+	type = gaim_status_type_new_full(GAIM_STATUS_OFFLINE, NULL, NULL, FALSE, TRUE, FALSE);
+	status_types = g_list_append(status_types, type);
+
 	return status_types;
 }