| 427 : purple_connection_get_account(purple_connections_get_all()->data)); |
427 : purple_connection_get_account(purple_connections_get_all()->data)); |
| 428 |
428 |
| 429 if (username != NULL) |
429 if (username != NULL) |
| 430 dialog->username = g_strdup(username); |
430 dialog->username = g_strdup(username); |
| 431 |
431 |
| 432 dialog->win = pidgin_create_window(_("Add Buddy"), PIDGIN_HIG_BORDER, "add_buddy", TRUE); |
432 dialog->win = pidgin_create_window(_("Add Buddy"), 12, "add_buddy", TRUE); |
| 433 gtk_widget_set_size_request(dialog->win, -1, 400); |
433 gtk_widget_set_size_request(dialog->win, -1, 400); |
| 434 |
434 |
| 435 g_signal_connect(G_OBJECT(dialog->win), "delete_event", |
435 g_signal_connect(G_OBJECT(dialog->win), "delete_event", |
| 436 G_CALLBACK(delete_win_cb), dialog); |
436 G_CALLBACK(delete_win_cb), dialog); |
| 437 |
437 |