# HG changeset patch # User Nathan Walp # Date 1127696873 0 # Node ID ea98c27f1a34ef7936e083cf213dfec1161845ec # Parent e36f0f9debb52dc67e41c3ec63c1b1e9206d9669 [gaim-migrate @ 13836] ok, I got the priority stuff backwords committer: Tailor Script diff -r e36f0f9debb5 -r ea98c27f1a34 src/protocols/jabber/jabber.c --- a/src/protocols/jabber/jabber.c Mon Sep 26 00:08:08 2005 +0000 +++ b/src/protocols/jabber/jabber.c Mon Sep 26 01:07:53 2005 +0000 @@ -1007,7 +1007,7 @@ types = g_list_append(types, type); priority_value = gaim_value_new(GAIM_TYPE_INT); - gaim_value_set_int(priority_value, 0); + gaim_value_set_int(priority_value, 1); type = gaim_status_type_new_with_attrs(GAIM_STATUS_AVAILABLE, "available", _("Available"), TRUE, TRUE, FALSE, "priority", _("Priority"), priority_value, "message", _("Message"), @@ -1015,7 +1015,7 @@ types = g_list_append(types, type); priority_value = gaim_value_new(GAIM_TYPE_INT); - gaim_value_set_int(priority_value, 0); + gaim_value_set_int(priority_value, 1); type = gaim_status_type_new_with_attrs(GAIM_STATUS_AVAILABLE, "chat", _("Chatty"), TRUE, TRUE, FALSE, "priority", _("Priority"), priority_value, "message", _("Message"), @@ -1023,7 +1023,7 @@ types = g_list_append(types, type); priority_value = gaim_value_new(GAIM_TYPE_INT); - gaim_value_set_int(priority_value, 5); + gaim_value_set_int(priority_value, 0); type = gaim_status_type_new_with_attrs(GAIM_STATUS_AWAY, "away", _("Away"), TRUE, TRUE, FALSE, "priority", _("Priority"), priority_value, "message", _("Message"), @@ -1031,7 +1031,7 @@ types = g_list_append(types, type); priority_value = gaim_value_new(GAIM_TYPE_INT); - gaim_value_set_int(priority_value, 10); + gaim_value_set_int(priority_value, 0); type = gaim_status_type_new_with_attrs(GAIM_STATUS_EXTENDED_AWAY, "xa", _("Extended Away"), TRUE, TRUE, FALSE, "priority", _("Priority"), priority_value, "message", _("Message"), @@ -1039,7 +1039,7 @@ types = g_list_append(types, type); priority_value = gaim_value_new(GAIM_TYPE_INT); - gaim_value_set_int(priority_value, 20); + gaim_value_set_int(priority_value, 0); type = gaim_status_type_new_with_attrs(GAIM_STATUS_UNAVAILABLE, "dnd", _("Do Not Disturb"), TRUE, TRUE, FALSE, "priority", _("Priority"), priority_value, "message", _("Message"),