Mercurial > pidgin
diff src/protocols/jabber/chat.c @ 10959:b6cafdeda2a8
[gaim-migrate @ 12761]
this actually saves me some work I thought I had to do
committer: Tailor Script <tailor@pidgin.im>
| author | Nathan Walp <nwalp@pidgin.im> |
|---|---|
| date | Wed, 01 Jun 2005 01:26:08 +0000 |
| parents | cef48e318125 |
| children | e8890f996cc1 |
line wrap: on
line diff
--- a/src/protocols/jabber/chat.c Wed Jun 01 00:26:40 2005 +0000 +++ b/src/protocols/jabber/chat.c Wed Jun 01 01:26:08 2005 +0000 @@ -40,16 +40,19 @@ pce = g_new0(struct proto_chat_entry, 1); pce->label = _("_Room:"); pce->identifier = "room"; + pce->required = TRUE; m = g_list_append(m, pce); pce = g_new0(struct proto_chat_entry, 1); pce->label = _("_Server:"); pce->identifier = "server"; + pce->required = TRUE; m = g_list_append(m, pce); pce = g_new0(struct proto_chat_entry, 1); pce->label = _("_Handle:"); pce->identifier = "handle"; + pce->required = TRUE; m = g_list_append(m, pce); pce = g_new0(struct proto_chat_entry, 1);
