| 1003 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); |
1003 gtk_misc_set_alignment(GTK_MISC(label), 0, 0); |
| 1004 gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 0, 1); |
1004 gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 0, 1); |
| 1005 |
1005 |
| 1006 /* Now the Buddy drop-down entry field. */ |
1006 /* Now the Buddy drop-down entry field. */ |
| 1007 info->entry = gtk_entry_new(); |
1007 info->entry = gtk_entry_new(); |
| 1008 pidgin_setup_screenname_autocomplete_with_filter(info->entry, NULL, chat_invite_filter, |
1008 pidgin_setup_screenname_autocomplete(info->entry, NULL, chat_invite_filter, |
| 1009 purple_conversation_get_account(conv)); |
1009 purple_conversation_get_account(conv)); |
| 1010 gtk_table_attach_defaults(GTK_TABLE(table), info->entry, 1, 2, 0, 1); |
1010 gtk_table_attach_defaults(GTK_TABLE(table), info->entry, 1, 2, 0, 1); |
| 1011 gtk_label_set_mnemonic_widget(GTK_LABEL(label), info->entry); |
1011 gtk_label_set_mnemonic_widget(GTK_LABEL(label), info->entry); |
| 1012 |
1012 |
| 1013 /* Now the label for "Message" */ |
1013 /* Now the label for "Message" */ |