changeset 10954:ec90b7d126be

[gaim-migrate @ 12754] sf patch #1211713, from Richard Laager "Join Chat Dialog Required Fields" To any aspiring patch writers, let this be a lesson... Small, simple and clearly good patches are very easy to commit. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 31 May 2005 23:51:20 +0000
parents e8e535ad720b
children 83a79d69160c
files src/protocols/irc/irc.c src/protocols/yahoo/yahoochat.c
diffstat 2 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/protocols/irc/irc.c	Tue May 31 23:48:54 2005 +0000
+++ b/src/protocols/irc/irc.c	Tue May 31 23:51:20 2005 +0000
@@ -202,6 +202,7 @@
 	pce = g_new0(struct proto_chat_entry, 1);
 	pce->label = _("_Channel:");
 	pce->identifier = "channel";
+	pce->required = TRUE;
 	m = g_list_append(m, pce);
 
 	pce = g_new0(struct proto_chat_entry, 1);
--- a/src/protocols/yahoo/yahoochat.c	Tue May 31 23:48:54 2005 +0000
+++ b/src/protocols/yahoo/yahoochat.c	Tue May 31 23:51:20 2005 +0000
@@ -983,6 +983,7 @@
 	pce = g_new0(struct proto_chat_entry, 1);
 	pce->label = _("_Room:");
 	pce->identifier = "room";
+	pce->required = TRUE;
 	m = g_list_append(m, pce);
 
 	return m;