comparison src/protocols/irc/irc.c @ 5925:6690934e5ea6

[gaim-migrate @ 6365] fix my breaking of right-clicking on anything but chats in the buddy list also make certain fields (passwords) for the in-blist chats not show up in the tooltip committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 20 Jun 2003 03:41:15 +0000
parents 7d385de2f9cd
children 8c44020a958e
comparison
equal deleted inserted replaced
5924:c304abc3e68b 5925:6690934e5ea6
2473 m = g_list_append(m, pce); 2473 m = g_list_append(m, pce);
2474 2474
2475 pce = g_new0(struct proto_chat_entry, 1); 2475 pce = g_new0(struct proto_chat_entry, 1);
2476 pce->label = _("Password:"); 2476 pce->label = _("Password:");
2477 pce->identifier = "password"; 2477 pce->identifier = "password";
2478 pce->secret = TRUE;
2478 m = g_list_append(m, pce); 2479 m = g_list_append(m, pce);
2479 2480
2480 return m; 2481 return m;
2481 } 2482 }
2482 2483