comparison src/gtkaccount.c @ 5711:e33778b9d395

[gaim-migrate @ 6132] The screenname field can be modified again. That's my last fix of the night, ladies and gentlemen. I hope you enjoyed your stay at Chip's Commits. Now I sleep, for I am up way past the time I should have gone to bed. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 03 Jun 2003 11:45:49 +0000
parents dbac958d8937
children 2d54d2c52c37
comparison
equal deleted inserted replaced
5710:dbac958d8937 5711:e33778b9d395
837 gaim_account_set_password(dialog->account, value); 837 gaim_account_set_password(dialog->account, value);
838 else 838 else
839 gaim_account_set_password(dialog->account, NULL); 839 gaim_account_set_password(dialog->account, NULL);
840 840
841 /* Build the username string. */ 841 /* Build the username string. */
842 username = g_strdup(gaim_account_get_username(dialog->account)); 842 username =
843 g_strdup(gtk_entry_get_text(GTK_ENTRY(dialog->screenname_entry)));
843 844
844 for (l = dialog->prpl_info->user_splits, l2 = dialog->user_split_entries; 845 for (l = dialog->prpl_info->user_splits, l2 = dialog->user_split_entries;
845 l != NULL && l2 != NULL; 846 l != NULL && l2 != NULL;
846 l = l->next, l2 = l2->next) { 847 l = l->next, l2 = l2->next) {
847 848