# HG changeset patch # User Christian Hammond # Date 1054640749 0 # Node ID e33778b9d395ad52936e615cb02363b9e0c37130 # Parent dbac958d89371821f8a380cf1aca642dd876ed01 [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 diff -r dbac958d8937 -r e33778b9d395 src/account.c --- a/src/account.c Tue Jun 03 11:42:13 2003 +0000 +++ b/src/account.c Tue Jun 03 11:45:49 2003 +0000 @@ -180,7 +180,7 @@ void gaim_account_set_username(GaimAccount *account, const char *username) { - g_return_if_fail(account != NULL); + g_return_if_fail(account != NULL); if (account->username != NULL) g_free(account->username); diff -r dbac958d8937 -r e33778b9d395 src/gtkaccount.c --- a/src/gtkaccount.c Tue Jun 03 11:42:13 2003 +0000 +++ b/src/gtkaccount.c Tue Jun 03 11:45:49 2003 +0000 @@ -839,7 +839,8 @@ gaim_account_set_password(dialog->account, NULL); /* Build the username string. */ - username = g_strdup(gaim_account_get_username(dialog->account)); + username = + g_strdup(gtk_entry_get_text(GTK_ENTRY(dialog->screenname_entry))); for (l = dialog->prpl_info->user_splits, l2 = dialog->user_split_entries; l != NULL && l2 != NULL;