comparison src/gtkrequest.c @ 13361:9b4a80566fd5

[gaim-migrate @ 15734] Ahh... The problems of multiple trees. Compile. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Wed, 01 Mar 2006 06:42:39 +0000
parents 2e6dda9f9159
children fb178093e364
comparison
equal deleted inserted replaced
13360:2e6dda9f9159 13361:9b4a80566fd5
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 }