diff src/protocols/sametime/sametime.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 2926e3c3185e
children da9fd490cef9
line wrap: on
line diff
--- a/src/protocols/sametime/sametime.c	Sun Dec 25 18:52:49 2005 +0000
+++ b/src/protocols/sametime/sametime.c	Sun Dec 25 19:09:25 2005 +0000
@@ -3229,10 +3229,6 @@
   GList *types = NULL;
   GaimStatusType *type;
 
-  type = gaim_status_type_new(GAIM_STATUS_OFFLINE, MW_STATE_OFFLINE,
-			      NULL, TRUE);
-  types = g_list_append(types, type);
-
   type = gaim_status_type_new(GAIM_STATUS_AVAILABLE, MW_STATE_ACTIVE,
 			      _("Active"), TRUE);
   gaim_status_type_add_attr(type, MW_STATE_MESSAGE, _("Message"),
@@ -3251,6 +3247,10 @@
 			    gaim_value_new(GAIM_TYPE_STRING));
   types = g_list_append(types, type);
   
+  type = gaim_status_type_new(GAIM_STATUS_OFFLINE, MW_STATE_OFFLINE,
+			      NULL, TRUE);
+  types = g_list_append(types, type);
+
   return types;
 }