Mercurial > pidgin
changeset 4591:5ef293db2582
[gaim-migrate @ 4875]
I liked the order I put them in.
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Thu, 20 Feb 2003 01:36:50 +0000 |
parents | 3b8e6c2b4a50 |
children | b69bbf9b1044 |
files | src/protocols/jabber/jabber.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/jabber/jabber.c Thu Feb 20 00:52:19 2003 +0000 +++ b/src/protocols/jabber/jabber.c Thu Feb 20 01:36:50 2003 +0000 @@ -4191,17 +4191,17 @@ ret->rename_group = jabber_rename_group; puo = g_new0(struct proto_user_opt, 1); + puo->label = g_strdup(_("Port:")); + puo->def = g_strdup("5222"); + puo->pos = USEROPT_PORT; + ret->user_opts = g_list_append(ret->user_opts, puo); + + puo = g_new0(struct proto_user_opt, 1); puo->label = g_strdup(_("Connect Server:")); puo->def = g_strdup(""); puo->pos = USEROPT_CONN_SERVER; ret->user_opts = g_list_append(ret->user_opts, puo); - puo = g_new0(struct proto_user_opt, 1); - puo->label = g_strdup(_("Port:")); - puo->def = g_strdup("5222"); - puo->pos = USEROPT_PORT; - ret->user_opts = g_list_append(ret->user_opts, puo); - my_protocol = ret; }