| 693 { |
693 { |
| 694 const char *type_hint = gaim_request_field_get_type_hint(fld); |
694 const char *type_hint = gaim_request_field_get_type_hint(fld); |
| 695 if (type_hint != NULL && strcmp(type_hint, "account") == 0) |
695 if (type_hint != NULL && strcmp(type_hint, "account") == 0) |
| 696 { |
696 { |
| 697 if (fld->ui_data == NULL) |
697 if (fld->ui_data == NULL) |
| 698 fld->ui_data - create_account_field(fld); |
698 fld->ui_data = create_account_field(fld); |
| 699 optmenu = GTK_WIDGET(fld->ui_data); |
699 optmenu = GTK_WIDGET(fld->ui_data); |
| 700 break; |
700 break; |
| 701 } |
701 } |
| 702 } |
702 } |
| 703 } |
703 } |