# HG changeset patch # User Mark Doliner # Date 1111638906 0 # Node ID 1da76f22c750e1f607f21637ed553b557cccfd3d # Parent 56f1c92b943f4269e34643136ad3e59ae2d7d9bf [gaim-migrate @ 12317] Rendezvous allows messages for both the available and away states committer: Tailor Script diff -r 56f1c92b943f -r 1da76f22c750 src/protocols/rendezvous/rendezvous.c --- a/src/protocols/rendezvous/rendezvous.c Thu Mar 24 04:09:46 2005 +0000 +++ b/src/protocols/rendezvous/rendezvous.c Thu Mar 24 04:35:06 2005 +0000 @@ -666,7 +666,10 @@ type = gaim_status_type_new_full(GAIM_STATUS_OFFLINE, "offline", _("Offline"), FALSE, TRUE, FALSE); status_types = g_list_append(status_types, type); - type = gaim_status_type_new_full(GAIM_STATUS_ONLINE, "available", _("Available"), FALSE, TRUE, FALSE); + type = gaim_status_type_new_with_attrs(GAIM_STATUS_ONLINE, "available", _("Available"), FALSE, TRUE, FALSE, "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), NULL); + status_types = g_list_append(status_types, type); + + type = gaim_status_type_new_with_attrs(GAIM_STATUS_AWAY, "away", _("Away"), TRUE, TRUE, FALSE, "message", _("Message"), gaim_value_new(GAIM_TYPE_STRING), NULL); status_types = g_list_append(status_types, type); return status_types;