| 4342 data->account_box = gaim_gtk_account_option_menu_new(account, FALSE, |
4342 data->account_box = gaim_gtk_account_option_menu_new(account, FALSE, |
| 4343 G_CALLBACK(add_buddy_select_account_cb), NULL, data); |
4343 G_CALLBACK(add_buddy_select_account_cb), NULL, data); |
| 4344 |
4344 |
| 4345 gtk_table_attach_defaults(GTK_TABLE(table), data->account_box, 1, 2, 3, 4); |
4345 gtk_table_attach_defaults(GTK_TABLE(table), data->account_box, 1, 2, 3, 4); |
| 4346 gaim_set_accessible_label (data->account_box, label); |
4346 gaim_set_accessible_label (data->account_box, label); |
| 4347 |
|
| 4348 /* End of account box */ |
4347 /* End of account box */ |
| 4349 |
4348 |
| 4350 g_signal_connect(G_OBJECT(data->window), "response", |
4349 g_signal_connect(G_OBJECT(data->window), "response", |
| 4351 G_CALLBACK(add_buddy_cb), data); |
4350 G_CALLBACK(add_buddy_cb), data); |
| 4352 |
4351 |