diff src/gtkdialogs.c @ 10791:2ab4b5acc8d1

[gaim-migrate @ 12433] " When you autocomplete a screenname in a dialog box that also includes an account selector, it should also autocomplete the account. This patch implements that." --rlaager this is how I would expect things to work. I was hit by this just the other day. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Thu, 07 Apr 2005 15:22:21 +0000
parents d83f745c997b
children d087e928ffd1
line wrap: on
line diff
--- a/src/gtkdialogs.c	Thu Apr 07 15:08:14 2005 +0000
+++ b/src/gtkdialogs.c	Thu Apr 07 15:22:21 2005 +0000
@@ -458,6 +458,7 @@
 	gaim_request_field_group_add_field(group, field);
 
 	field = gaim_request_field_account_new("account", _("_Account"), NULL);
+	gaim_request_field_set_type_hint(field, "account");
 	gaim_request_field_set_visible(field,
 		(gaim_connections_get_all() != NULL &&
 		 gaim_connections_get_all()->next != NULL));
@@ -600,6 +601,7 @@
 	gaim_request_field_group_add_field(group, field);
 
 	field = gaim_request_field_account_new("account", _("_Account"), NULL);
+	gaim_request_field_set_type_hint(field, "account");
 	gaim_request_field_set_visible(field,
 		(gaim_connections_get_all() != NULL &&
 		 gaim_connections_get_all()->next != NULL));
@@ -654,6 +656,7 @@
 	gaim_request_field_group_add_field(group, field);
 
 	field = gaim_request_field_account_new("account", _("_Account"), NULL);
+	gaim_request_field_set_type_hint(field, "account");
 	gaim_request_field_account_set_show_all(field, TRUE);
 	gaim_request_field_set_visible(field,
 		(gaim_accounts_get_all() != NULL &&